-
-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathenums.py
More file actions
44 lines (30 loc) · 676 Bytes
/
enums.py
File metadata and controls
44 lines (30 loc) · 676 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from enum import Enum
class ResetMode(Enum):
DEFAULT = "mixed"
SOFT = "soft"
MIXED = "mixed"
HARD = "hard"
class ColorByOptions(Enum):
AUTHOR = "author"
BRANCH = "branch"
NOTLOCAL1 = "notlocal1"
NOTLOCAL2 = "notlocal2"
class StyleOptions(Enum):
CLEAN = "clean"
THICK = "thick"
class VideoFormat(str, Enum):
MP4 = "mp4"
WEBM = "webm"
class ImgFormat(str, Enum):
JPG = "jpg"
PNG = "png"
class StashSubCommand(Enum):
POP = "pop"
APPLY = "apply"
PUSH = "push"
class RemoteSubCommand(Enum):
ADD = "add"
RENAME = "rename"
REMOVE = "remove"
GET_URL = "get-url"
SET_URL = "set-url"