We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d89d29e commit 0d027b3Copy full SHA for 0d027b3
matter_server/common/helpers/util.py
@@ -283,7 +283,7 @@ def dataclass_from_dict(
283
extra_keys = dict_obj.keys() - {f.name for f in dc_fields}
284
if extra_keys:
285
raise KeyError(
286
- f'Extra key(s) {",".join(extra_keys)} not allowed for {str(cls)}'
+ f"Extra key(s) {','.join(extra_keys)} not allowed for {str(cls)}"
287
)
288
type_hints = cached_type_hints(cls)
289
return cls(
0 commit comments