We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 978e145 commit 5a3e562Copy full SHA for 5a3e562
pylint/checkers/method_args.py
@@ -29,10 +29,10 @@ class MethodArgsChecker(BaseChecker):
29
"W3101": (
30
"Missing timeout argument for method '%s' can cause your program to hang indefinitely",
31
"missing-timeout",
32
- "Used when a method needs a 'timeout' parameter "
33
- "in order to avoid waiting for a long time. If no timeout "
34
- "is specified explicitly the default value is used, for example "
35
- "for 'requests' the program will never time out (i.e. hang indefinitely). ",
+ "Used when a method needs a 'timeout' parameter in order to avoid waiting "
+ "for a long time. If no timeout is specified explicitly the default value "
+ "is used. For example for 'requests' the program will never time out "
+ "(i.e. hang indefinitely). ",
36
),
37
}
38
options = (
0 commit comments