Skip to content

Commit 94a32c2

Browse files
committed
Fix mypy.
1 parent c50dd11 commit 94a32c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylint/checkers/typecheck.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1497,7 +1497,7 @@ def visit_call(self, node: nodes.Call) -> None:
14971497
### _dp("called in frame body", called in node.frame().body)
14981498
### _dp("dec names", called.decoratornames())
14991499

1500-
def _call_site_has_args(cs):
1500+
def _call_site_has_args(cs: arguments.CallSite) -> bool:
15011501
"""True if any args passed."""
15021502
has_args = (
15031503
False

0 commit comments

Comments
 (0)