diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2021-09-17 07:15:09 +0300 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-09-17 07:39:52 +0200 |
commit | 4cb8ef1a89aec4fefb1a36fd484fa9f35be18f03 (patch) | |
tree | 223d33e15f4923f708f887a70acdadc991b4c7d4 /pylint/checkers/variables.py | |
parent | da36529a6ae1fb83417e600528692530a27aac1f (diff) | |
download | pylint-git-4cb8ef1a89aec4fefb1a36fd484fa9f35be18f03.tar.gz |
Spelling and grammar fixes
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 ( |