Coverage for o2/models/self_rating.py: 100%

8 statements  

« prev     ^ index     » next       coverage.py v7.6.12, created at 2025-05-16 11:18 +0000

1from enum import Enum 

2 

3 

4class RATING(float, Enum): 

5 """Rating values used to prioritize or evaluate optimization actions. 

6 

7 This enum provides a scale of importance or effectiveness ratings 

8 from NOT_APPLICABLE (0) to EXTREME (99). 

9 """ 

10 

11 NOT_APPLICABLE = 0 

12 VERY_LOW = 1 

13 LOW = 2 

14 MEDIUM = 3 

15 HIGH = 4 

16 EXTREME = 99