diff options
Diffstat (limited to 'pylint/checkers/variables.py')
-rw-r--r-- | pylint/checkers/variables.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/checkers/variables.py b/pylint/checkers/variables.py index cfaf3b731..6cc2cb865 100644 --- a/pylint/checkers/variables.py +++ b/pylint/checkers/variables.py @@ -1474,8 +1474,8 @@ class VariablesChecker(BaseChecker): and defframe.parent_of(node) and stmt is defstmt ): - # Single statement if, with assingment expression on same - # line as assigment + # Single statement if, with assignment expression on same + # line as assignment # x = b if (b := True) else False maybee0601 = False elif ( |