Tue, 20 Sep 2022 11:40:04 +0200
Improved the display of the 'Target Versions' list of the 'Black' configuration dialog.
# -*- 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