Skip to content

Commit 5a3e562

Browse files
Update pylint/checkers/method_args.py
Co-authored-by: Pierre Sassoulas <[email protected]>
1 parent 978e145 commit 5a3e562

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pylint/checkers/method_args.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ class MethodArgsChecker(BaseChecker):
2929
"W3101": (
3030
"Missing timeout argument for method '%s' can cause your program to hang indefinitely",
3131
"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). ",
32+
"Used when a method needs a 'timeout' parameter in order to avoid waiting "
33+
"for a long time. If no timeout is specified explicitly the default value "
34+
"is used. For example for 'requests' the program will never time out "
35+
"(i.e. hang indefinitely). ",
3636
),
3737
}
3838
options = (

0 commit comments

Comments
 (0)