Skip to content

Commit 98a3b52

Browse files
committed
fix id's clash
Signed-off-by: Alvaro Frias <[email protected]>
1 parent 75252e6 commit 98a3b52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pylint/checkers/type_annotations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ class TypeAnnotationChecker(checkers.BaseChecker):
2626

2727
name = "type-annotation"
2828
msgs = {
29-
"C2901": (
29+
"C3801": (
3030
"Missing return type annotation for function %r",
3131
"missing-return-type-annotation",
3232
"Used when a function or method does not have a return type annotation. "
3333
"Type annotations improve code readability and help with static type checking.",
3434
),
35-
"C2902": (
35+
"C3802": (
3636
"Missing type annotation for parameter %r in function %r",
3737
"missing-param-type-annotation",
3838
"Used when a function or method parameter does not have a type annotation. "

0 commit comments

Comments
 (0)