Skip to content

Commit 88f3701

Browse files
committed
not on import order
Signed-off-by: Sylvain Hellegouarch <[email protected]>
1 parent 9379365 commit 88f3701

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

sources/reference/developing/guidelines.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,17 @@ high-level rules here:
8989
Python [json][] module
9090
* Try to respect a width of 80 characters for code and documentation, this
9191
should be covered by the code formatter
92+
* Sort imports as follows:
93+
94+
```text
95+
# Python stdlib imports
96+
97+
# Third-party imports
98+
99+
# Local package imports
100+
```
101+
102+
This should be dealt with by the code formatter
92103

93104

94105
[signoff]: https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---signoff

0 commit comments

Comments
 (0)