Files
openide/python/testData/addImport/localFromImport.after.py
Mikhail Golubev f71d87d428 PY-15701 Allow to specify minimum number of blank lines after local imports
Add new option "After local imports" on "Blank lines" tab of Python
code style settings.
2015-06-17 21:00:44 +03:00

5 lines
97 B
Python

def func():
for _ range(10):
from package.module import foo
foo
# <ref>