chkbit/chkbit_cli/progress.py

9 lines
116 B
Python
Raw Permalink Normal View History

2023-12-21 19:29:27 +01:00
from enum import Enum
class Progress(Enum):
Quiet = (0,)
Summary = (1,)
Plain = (2,)
Fancy = (3,)