comparison: src/eric7/CodeFormatting/BlackFormattingAction.py
src/eric7/CodeFormatting/BlackFormattingAction.py
- branch
- eric7
- changeset 9214
- bd28e56047d7
- child 9221
- bf71ee032bb4
equal
deleted
inserted
replaced
|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2022 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 """ |
|
7 Module implementing an enum defining the various code formatting actions. |
|
8 """ |
|
9 |
|
10 import enum |
|
11 |
|
12 |
|
13 class BlackFormattingAction(enum.Enum): |
|
14 """ |
|
15 Class defining the various code formatting actions. |
|
16 """ |
|
17 Format = 0 |
|
18 Check = 1 |
|
19 Diff = 2 |