Skip to content

Commit 9a59394

Browse files
committed
Fix check-self violations
1 parent d5f93cc commit 9a59394

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pydoclint/utils/return_anno.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def decompose(self) -> list[str]:
3030
3131
Returns
3232
-------
33-
List[str]
33+
list[str]
3434
The decomposed element
3535
3636
Raises

pydoclint/visitor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def checkArguments( # noqa: C901
375375
376376
Returns
377377
-------
378-
List[Violation]
378+
list[Violation]
379379
A list of argument violations
380380
"""
381381
astArgList: list[ast.arg] = collectFuncArgs(node)

0 commit comments

Comments
 (0)