Skip to content

Commit

Permalink
update while-used doc (#7974)
Browse files Browse the repository at this point in the history
  • Loading branch information
clavedeluna committed Dec 24, 2022
1 parent 2ae0e98 commit 4a5f5be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pylint/extensions/while_used.py
Expand Up @@ -24,7 +24,8 @@ class WhileChecker(BaseChecker):
"W0149": (
"Used `while` loop",
"while-used",
"Unbounded `while` loops can often be rewritten as bounded `for` loops.",
"Unbounded `while` loops can often be rewritten as bounded `for` loops. "
"Exceptions can be made for cases such as event loops, listeners, etc.",
)
}

Expand Down

0 comments on commit 4a5f5be

Please sign in to comment.