We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88f0ef9 commit fda76b4Copy full SHA for fda76b4
roborock/data/containers.py
@@ -237,7 +237,7 @@ def supported_schema_codes(self) -> set[str]:
237
"""Return a set of fields that are supported by the device."""
238
if self.schema is None:
239
return set()
240
- return set({schema.code for schema in self.schema if schema.code is not None})
+ return {schema.code for schema in self.schema if schema.code is not None}
241
242
243
@dataclass
0 commit comments