summaryrefslogtreecommitdiff
path: root/pylint/test/functional/bad_whitespace.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/functional/bad_whitespace.py')
-rw-r--r--pylint/test/functional/bad_whitespace.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/pylint/test/functional/bad_whitespace.py b/pylint/test/functional/bad_whitespace.py
deleted file mode 100644
index 9b32087e2..000000000
--- a/pylint/test/functional/bad_whitespace.py
+++ /dev/null
@@ -1,7 +0,0 @@
-# pylint: disable = invalid-name,missing-docstring,unused-variable,unused-argument
-def function(hello):
- x, y, z = (1,2,3,) # [bad-whitespace, bad-whitespace]
-
-AAA =1 # [bad-whitespace]
-BBB = 2 # [bad-whitespace]
-CCC= 1 # [bad-whitespace]