Skip to content

Commit 2c6ed14

Browse files
authored
fix(feature-flags): revert RuleAction Enum inheritance on str (#1910)
1 parent 43feb1e commit 2c6ed14

File tree

1 file changed

+1
-1
lines changed
  • aws_lambda_powertools/utilities/feature_flags

1 file changed

+1
-1
lines changed

aws_lambda_powertools/utilities/feature_flags/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
HOUR_MIN_SEPARATOR = ":"
2424

2525

26-
class RuleAction(Enum):
26+
class RuleAction(str, Enum):
2727
EQUALS = "EQUALS"
2828
NOT_EQUALS = "NOT_EQUALS"
2929
KEY_GREATER_THAN_VALUE = "KEY_GREATER_THAN_VALUE"

0 commit comments

Comments
 (0)