mirror of
https://github.com/python-kasa/python-kasa.git
synced 2025-01-22 04:37:06 +00:00
Make map_locked and global_cleaned optional, as they are not available on rv30
This commit is contained in:
parent
a19753e814
commit
1c5dabedb6
@ -29,9 +29,9 @@ class MapSummary(DataClassDictMixin):
|
||||
rotate_angle: int
|
||||
is_saved: bool
|
||||
update_time: int
|
||||
global_cleaned: int
|
||||
auto_area_flag: bool
|
||||
map_locked: int
|
||||
map_locked: int | None = field(default=None)
|
||||
global_cleaned: int | None = field(default=None)
|
||||
|
||||
|
||||
class Maps(SerializationStrategy):
|
||||
|
Loading…
Reference in New Issue
Block a user