167 lines
1.8 KiB
Python
167 lines
1.8 KiB
Python
def foo():
|
|
"""
|
|
Docstring
|
|
"""
|
|
|
|
# Here we go
|
|
if x:
|
|
|
|
# This is also now fine
|
|
a = 123
|
|
|
|
else:
|
|
# But not necessary
|
|
a = 123
|
|
|
|
if y:
|
|
|
|
while True:
|
|
|
|
"""
|
|
Long comment here
|
|
"""
|
|
a = 123
|
|
|
|
if z:
|
|
|
|
for _ in range(100):
|
|
a = 123
|
|
else:
|
|
|
|
try:
|
|
|
|
# this should be ok
|
|
a = 123
|
|
except:
|
|
|
|
"""also this"""
|
|
a = 123
|
|
|
|
|
|
def bar():
|
|
|
|
if x:
|
|
a = 123
|
|
|
|
|
|
def baz():
|
|
|
|
# OK
|
|
if x:
|
|
a = 123
|
|
|
|
def quux():
|
|
|
|
new_line = here
|
|
|
|
|
|
class Cls:
|
|
|
|
def method(self):
|
|
|
|
pass
|
|
|
|
|
|
async def async_fn():
|
|
|
|
"""Docstring."""
|
|
|
|
|
|
@decorated
|
|
async def async_fn():
|
|
|
|
"""Docstring."""
|
|
|
|
|
|
def top_level(
|
|
a: int,
|
|
b: str,
|
|
) -> Whatever[Generic, Something]:
|
|
|
|
def nested(x: int) -> int:
|
|
pass
|
|
|
|
# output
|
|
|
|
def foo():
|
|
"""
|
|
Docstring
|
|
"""
|
|
|
|
# Here we go
|
|
if x:
|
|
|
|
# This is also now fine
|
|
a = 123
|
|
|
|
else:
|
|
# But not necessary
|
|
a = 123
|
|
|
|
if y:
|
|
|
|
while True:
|
|
|
|
"""
|
|
Long comment here
|
|
"""
|
|
a = 123
|
|
|
|
if z:
|
|
|
|
for _ in range(100):
|
|
a = 123
|
|
else:
|
|
|
|
try:
|
|
|
|
# this should be ok
|
|
a = 123
|
|
except:
|
|
|
|
"""also this"""
|
|
a = 123
|
|
|
|
|
|
def bar():
|
|
|
|
if x:
|
|
a = 123
|
|
|
|
|
|
def baz():
|
|
|
|
# OK
|
|
if x:
|
|
a = 123
|
|
|
|
|
|
def quux():
|
|
|
|
new_line = here
|
|
|
|
|
|
class Cls:
|
|
|
|
def method(self):
|
|
|
|
pass
|
|
|
|
|
|
async def async_fn():
|
|
"""Docstring."""
|
|
|
|
|
|
@decorated
|
|
async def async_fn():
|
|
"""Docstring."""
|
|
|
|
|
|
def top_level(
|
|
a: int,
|
|
b: str,
|
|
) -> Whatever[Generic, Something]:
|
|
|
|
def nested(x: int) -> int:
|
|
pass
|