Mon, 07 Nov 2022 17:19:58 +0100
Corrected/acknowledged some bad import style and removed some obsolete code.
# -*- 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