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
# -*- coding: utf-8 -*- # Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing an enum defining the various isort code formatting actions. """ import enum class IsortFormattingAction(enum.Enum): """ Class defining the various isort code formatting actions. """ Sort = 0 Check = 1 Diff = 2