blob: 9b32087e2496899a35f289e7c5b3d364e95ec477 (
plain)
1
2
3
4
5
6
7
|
# 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]
|