summaryrefslogtreecommitdiff
path: root/pylint/checkers/variables.py
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2021-09-17 07:15:09 +0300
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-09-17 07:39:52 +0200
commit4cb8ef1a89aec4fefb1a36fd484fa9f35be18f03 (patch)
tree223d33e15f4923f708f887a70acdadc991b4c7d4 /pylint/checkers/variables.py
parentda36529a6ae1fb83417e600528692530a27aac1f (diff)
downloadpylint-git-4cb8ef1a89aec4fefb1a36fd484fa9f35be18f03.tar.gz
Spelling and grammar fixes
Diffstat (limited to 'pylint/checkers/variables.py')
-rw-r--r--pylint/checkers/variables.py4
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 (