Files
openide/python/testData/formatter/blanksBetweenImportsPreservedWithoutOptimizeImports_after.py
T
Mikhail Golubev 41f66d616d PY-17564 Keep blank lines between imports inserted by user
It doesn't solve the problem that reformatting doesn't add blank lines
before import groups according to PEP-8 until "Optimize Imports" is
called on a file, but at least it doesn't remove blank lines inserted
manually by user.
2015-11-13 17:23:05 +03:00

10 lines
178 B
Python

import os
import uuid
from django.db import models
from django.utils.translation import ugettext_lazy as _
from project import something
print(something, _, models, os, uuid)