chkbit-py/chkbit_cli/progress.py

9 lines
116 B
Python
Raw Normal View History

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