Files
openide/python/testData/formatter/pep8MultipleStatementsOnOneLine_after.py
Daniil Kalinin 6a0f77c6ab PY-35936 Allow formatter to fix "PEP 8: E701 multiple statements on one line (colon)"
(cherry picked from commit e955950c3d09fee9d816147a9e951af6cee53ae0)

IJ-CR-16824

GitOrigin-RevId: 0fa973ad2868e9388515d36a4f57f4ae3a28c4e3
2021-11-24 08:40:24 +00:00

19 lines
127 B
Python

class Foo:
pass
if x > 5:
y = 10
def f():
pass
def mul(x, y):
return x * y
with foo() as foo:
pass