Skip to content

Commit 352274e

Browse files
committed
update: more meaningful values in tier enums (#1176)
2 parents d412955 + c7debf3 commit 352274e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

garak/probes/base.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525

2626

2727
class Tier(IntEnum):
28-
TIER_1 = 10
29-
TIER_2 = 20
30-
TIER_3 = 30
31-
TIER_9 = 99
28+
TIER_1 = 1
29+
TIER_2 = 2
30+
TIER_3 = 3
31+
TIER_9 = 9
3232

3333

3434
class Probe(Configurable):

0 commit comments

Comments
 (0)