Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
chore: more linting
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <vibiret@microsoft.com>
  • Loading branch information
baywet committed Oct 3, 2024
1 parent 4cdba4d commit 08d26bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kiota_serialization_json/json_serialization_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,8 @@ def write_any_value(self, key: Optional[str], value: Any) -> Any:
self.__write_collection_of_dict_values(key, value)
else:
raise TypeError(
f"Encountered an unknown collection type during serialization {type(value)} with key {key}"
f"Encountered an unknown collection type during serialization {type(value)} \
with key {key}"
)
elif isinstance(value, dict):
self.__write_dict_value(key, value)
Expand Down

0 comments on commit 08d26bb

Please sign in to comment.