python-by-example-150-chall.../venv/lib/python3.6/site-packages/pylint/test/functional/bad_whitespace.py

8 lines
246 B
Python
Raw Normal View History

2019-08-04 20:26:35 +08:00
# 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]