Skip to content

Commit effa78f

Browse files
Remove print statements
1 parent 8eafaba commit effa78f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

mypy/checker.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6156,9 +6156,6 @@ def find_isinstance_check_helper(
61566156

61576157
if isinstance(node, CallExpr) and len(node.args) != 0:
61586158
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=}")
61626159
if refers_to_fullname(node.callee, "builtins.isinstance"):
61636160
if len(node.args) != 2: # the error will be reported elsewhere
61646161
return {}, {}

0 commit comments

Comments
 (0)