We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8eafaba commit effa78fCopy full SHA for effa78f
mypy/checker.py
@@ -6156,9 +6156,6 @@ def find_isinstance_check_helper(
6156
6157
if isinstance(node, CallExpr) and len(node.args) != 0:
6158
expr = collapse_walrus(node.args[0])
6159
- print("[TypeGuard Debug] --- find_isinstance_check_helper ---")
6160
- print(f"[TypeGuard Debug] {node=}")
6161
- print(f"[TypeGuard Debug] {node.callee=}")
6162
if refers_to_fullname(node.callee, "builtins.isinstance"):
6163
if len(node.args) != 2: # the error will be reported elsewhere
6164
return {}, {}
0 commit comments