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 256bf41 commit e648db7Copy full SHA for e648db7
pylint/checkers/typecheck.py
@@ -1455,6 +1455,9 @@ def visit_call(self, node: nodes.Call) -> None:
1455
"""
1456
1457
def _dp(s, val=None):
1458
+ if "Attribute.__init__ l.13" not in str(node):
1459
+ # print("Not in init")
1460
+ return
1461
if val is None:
1462
print(f" {s}", flush=True)
1463
else:
@@ -1480,6 +1483,7 @@ def _dp(s, val=None):
1480
1483
_dp("f")
1481
1484
if called.args.args is None:
1482
1485
_dp("g")
1486
+ _dp("called.name", called.name)
1487
if called.name == "isinstance":
1488
# Verify whether second argument of isinstance is a valid type
1489
_dp("h")
0 commit comments