Mon, 31 Oct 2022 15:29:18 +0100
Code Formatting
- added an interface to resort the import statements of Python source files with the 'isort' utility
9214 | 1 | # -*- coding: utf-8 -*- |
2 | ||
3 | # Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> | |
4 | # | |
5 | ||
6 | """ | |
7 | Package implementing dialogs to perform some code formatting. | |
8 | ||
9 | The supported code formatting systems are these. | |
10 | <ul> | |
11 | <li><a href="https://github.com/psf/black">Black</a></li> | |
9453
e5065dde905d
Code Formatting
Detlev Offenbach <detlev@die-offenbachs.de>
parents:
9214
diff
changeset
|
12 | <li><a href="https://pycqa.github.io/isort/">isort</a></li> |
9214 | 13 | </ul |
14 | """ |