From cf91187b7aef46a43bd4e4b56d2d522bfd13274f Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Fri, 3 Jul 2026 12:56:47 +0200 Subject: [PATCH] fix(checker): remove bool as subtype of int --- midas/checker/builtins.py | 1 - 1 file changed, 1 deletion(-) diff --git a/midas/checker/builtins.py b/midas/checker/builtins.py index 017f158..be6a781 100644 --- a/midas/checker/builtins.py +++ b/midas/checker/builtins.py @@ -19,7 +19,6 @@ if TYPE_CHECKING: BUILTIN_SUBTYPES: dict[str, set[str]] = { "object": {"float", "list", "dict", "str", "bytes", "tuple"}, "float": {"int"}, - "int": {"bool"}, }