chkbit-py/chkbit_cli/progress.py
2023-12-22 20:55:56 +01:00

9 lines
116 B
Python

from enum import Enum
class Progress(Enum):
Quiet = (0,)
Summary = (1,)
Plain = (2,)
Fancy = (3,)