src/eric7/CodeFormatting/BlackFormattingAction.py

branch
eric7
changeset 9453
e5065dde905d
parent 9221
bf71ee032bb4
child 9653
e67609152c5e
equal deleted inserted replaced
9452:325c6de4b1f5 9453:e5065dde905d
2 2
3 # Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> 3 # Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de>
4 # 4 #
5 5
6 """ 6 """
7 Module implementing an enum defining the various code formatting actions. 7 Module implementing an enum defining the various Black code formatting actions.
8 """ 8 """
9 9
10 import enum 10 import enum
11 11
12 12
13 class BlackFormattingAction(enum.Enum): 13 class BlackFormattingAction(enum.Enum):
14 """ 14 """
15 Class defining the various code formatting actions. 15 Class defining the various Black code formatting actions.
16 """ 16 """
17 17
18 Format = 0 18 Format = 0
19 Check = 1 19 Check = 1
20 Diff = 2 20 Diff = 2

eric ide

mercurial