Skip to content

Commit f5a376b

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 21e52b7 commit f5a376b

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def _validate_metadata(key: str, value: typing.Union[float, int, str, bool]) ->
1515
elif not key:
1616
raise ParseError("key must not be empty")
1717
if value is None:
18-
raise ParseError("Metadata value for key " + str(key) + " must be set")
18+
raise ParseError(f"Metadata value for key {key} must be set")
1919
elif not isinstance(value, (float, int, str, bool)):
2020
raise ParseError(f"Metadata value {value} for key {key} must be of type float, int, str or bool, but is {type(value)}")
2121

0 commit comments

Comments
 (0)