Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix mypy.
Browse files Browse the repository at this point in the history
jzohrab committed Jan 17, 2025
1 parent c50dd11 commit 94a32c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylint/checkers/typecheck.py
Original file line number Diff line number Diff line change
@@ -1497,7 +1497,7 @@ def visit_call(self, node: nodes.Call) -> None:
### _dp("called in frame body", called in node.frame().body)
### _dp("dec names", called.decoratornames())

Check notice on line 1498 in pylint/checkers/typecheck.py

GitHub Actions / pylint

C0401

Wrong spelling of a word 'decoratornames' in a comment:

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

0 comments on commit 94a32c2

Please sign in to comment.