Wed, 26 Oct 2022 18:47:23 +0200
Added an 'About Black' entry to the Code Formatting menus of the project sources browser and the editor.
# -*- coding: utf-8 -*- # Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing an enum defining the various code formatting actions. """ import enum class BlackFormattingAction(enum.Enum): """ Class defining the various code formatting actions. """ Format = 0 Check = 1 Diff = 2