Skip to content

Commit c5bde49

Browse files
committed
chore: typo on json bool
1 parent 8ed3a66 commit c5bde49

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

aws_lambda_powertools/utilities/feature_flags/schema.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ class SchemaValidator(BaseValidator):
5858
```json
5959
{
6060
"my_feature": {
61-
"default": True,
61+
"default": true,
6262
"rules": {}
6363
},
6464
"my_non_boolean_feature": {
6565
"default": {"group": "read-only"},
66-
"boolean_type": False,
66+
"boolean_type": false,
6767
"rules": {}
6868
}
6969
}
@@ -83,7 +83,7 @@ class SchemaValidator(BaseValidator):
8383
"default": true,
8484
"rules": {
8585
"tenant id equals 345345435": {
86-
"when_match": False,
86+
"when_match": false,
8787
"conditions": []
8888
}
8989
}

0 commit comments

Comments
 (0)