Sun, 18 Dec 2022 19:33:46 +0100
Refactored the Utilities and Globals modules in order to enhance the maintainability.
# -*- coding: utf-8 -*- # Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing an enum defining the various Black code formatting actions. """ import enum class BlackFormattingAction(enum.Enum): """ Class defining the various Black code formatting actions. """ Format = 0 Check = 1 Diff = 2