mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
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.
10 lines
178 B
Python
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)
|