Files
openide/python/testData/quickFixes/PyMakeMethodStaticQuickFixTest/asyncMethod_after.py
Mikhail Golubev b55fd53258 PY-35627 Make Python formatter always add a line break after a decorator list
For regular non-async functions, it already worked thanks to PyTokenSeparatorGenerator.

GitOrigin-RevId: b60dba7b34710cad7dc46ad6f943b3944fc00c42
2024-02-07 17:34:28 +00:00

5 lines
76 B
Python

class C:
@staticmethod
async def <caret>m(p):
return f'{p}'