fix(checker): remove bool as subtype of int

This commit is contained in:
2026-07-03 12:56:47 +02:00
parent 1b2bdf0b79
commit cf91187b7a

View File

@@ -19,7 +19,6 @@ if TYPE_CHECKING:
BUILTIN_SUBTYPES: dict[str, set[str]] = {
"object": {"float", "list", "dict", "str", "bytes", "tuple"},
"float": {"int"},
"int": {"bool"},
}