Skip to content

Commit

Permalink
Remove bad-whitespace disabling in all code
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed May 3, 2020
1 parent c233e7a commit 967e0e3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/functional/l/logical_tautology.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Check for logical tautology, when a value is compared against itself."""
# pylint: disable=missing-docstring, blacklisted-name, singleton-comparison, too-many-return-statements, inconsistent-return-statements, no-else-return, too-many-branches, bad-whitespace, literal-comparison
# pylint: disable=missing-docstring, blacklisted-name, singleton-comparison, too-many-return-statements, inconsistent-return-statements, no-else-return, too-many-branches, literal-comparison

def foo():
arg = 786
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/t/trailing_comma_tuple.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Check trailing comma one element tuples."""
# pylint: disable=bad-whitespace, missing-docstring
# pylint: disable=missing-docstring
AAA = 1, # [trailing-comma-tuple]
BBB = "aaaa", # [trailing-comma-tuple]
CCC="aaa", # [trailing-comma-tuple]
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/u/unnecessary_comprehension.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pylint: disable=undefined-variable, pointless-statement, missing-docstring, line-too-long, bad-whitespace
# pylint: disable=undefined-variable, pointless-statement, missing-docstring, line-too-long
# For name-reference see https://docs.python.org/3/reference/expressions.html#displays-for-lists-sets-and-dictionaries

# List comprehensions
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/u/unused_typing_imports.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pylint: disable=missing-docstring, bad-whitespace
# pylint: disable=missing-docstring
"""Regression test for https://github.com/PyCQA/pylint/issues/1168
The problem was that we weren't handling keyword-only arguments annotations,
Expand Down

0 comments on commit 967e0e3

Please sign in to comment.