Recommend relative imports within Django components.
django-developers thread: https://groups.google.com/d/msg/django-developers/11XvmVdx58w/sFrF0pL8LTgJ
This commit is contained in:
parent
7d60659e22
commit
0eb846605e
|
@ -67,7 +67,8 @@ Imports
|
||||||
* Put imports in these groups: future, standard library, third-party libraries,
|
* Put imports in these groups: future, standard library, third-party libraries,
|
||||||
other Django components, local Django component, try/excepts. Sort lines in
|
other Django components, local Django component, try/excepts. Sort lines in
|
||||||
each group alphabetically by the full module name. Place all ``import module``
|
each group alphabetically by the full module name. Place all ``import module``
|
||||||
statements before ``from module import objects`` in each section.
|
statements before ``from module import objects`` in each section. Use absolute
|
||||||
|
imports for other Django components and relative imports for local components.
|
||||||
|
|
||||||
* On each line, alphabetize the items with the upper case items grouped before
|
* On each line, alphabetize the items with the upper case items grouped before
|
||||||
the lower case items.
|
the lower case items.
|
||||||
|
|
Loading…
Reference in New Issue