Skip to content

Commit e054a4f

Browse files
chrfwowgruebel
andauthored
Update providers/openfeature-provider-flagd/src/openfeature/contrib/provider/flagd/resolvers/process/flags.py
Co-authored-by: Anton Grübel <anton.gruebel@gmail.com> Signed-off-by: chrfwow <christian.lutnik@dynatrace.com>
1 parent 5c9fe24 commit e054a4f

File tree

1 file changed

+1
-8
lines changed
  • providers/openfeature-provider-flagd/src/openfeature/contrib/provider/flagd/resolvers/process

1 file changed

+1
-8
lines changed

providers/openfeature-provider-flagd/src/openfeature/contrib/provider/flagd/resolvers/process/flags.py

+1-8
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,7 @@ def _validate_metadata(key: str, value: typing.Union[float, int, str, bool]) ->
2222
if value is None:
2323
raise ParseError("Metadata value for key " + str(key) + " must be set")
2424
elif not isinstance(value, (float, int, str, bool)):
25-
raise ParseError(
26-
"Metadata value "
27-
+ str(value)
28-
+ " for key "
29-
+ str(key)
30-
+ " must be of type float, int, str or bool, but is "
31-
+ str(type(value))
32-
)
25+
raise ParseError(f"Metadata value {value} for key {key} must be of type float, int, str or bool, but is {type(value)}")
3326

3427

3528
class FlagStore:

0 commit comments

Comments
 (0)