File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ Confusing Elif checker Messages
118
118
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
119
119
:confusing-consecutive-elif (R5601): *Consecutive elif with differing indentation level, consider creating a function to separate the inner elif *
120
120
Used when an elif statement follows right after an indented block which
121
- itself ends with if or elif. It may not be ovious if the elif statement was
121
+ itself ends with if or elif. It may not be obvious if the elif statement was
122
122
willingly or mistakenly unindented. Extracting the indented if statement into
123
123
a separate function might avoid confusion and prevent errors.
124
124
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class ConfusingConsecutiveElifChecker(BaseChecker):
27
27
" elif" ,
28
28
"confusing-consecutive-elif" ,
29
29
"Used when an elif statement follows right after an indented block which itself ends with if or elif. "
30
- "It may not be ovious if the elif statement was willingly or mistakenly unindented. "
30
+ "It may not be obvious if the elif statement was willingly or mistakenly unindented. "
31
31
"Extracting the indented if statement into a separate function might avoid confusion and prevent "
32
32
"errors." ,
33
33
)
You can’t perform that action at this time.
0 commit comments