Coverage for jstark / period_unit_of_measure.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-03-23 22:34 +0000

1from enum import Enum 

2 

3 

4class PeriodUnitOfMeasure(Enum): 

5 """Units in which periods can be measured""" 

6 

7 DAY = "d" 

8 WEEK = "w" 

9 MONTH = "m" 

10 QUARTER = "q" 

11 YEAR = "y"