Skip to content

Commit

Permalink
🔥 remove useless aliases for Litterbox settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Jezza34000 committed Dec 8, 2024
1 parent 3050e3f commit ce80b2c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pypetkit/litter_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ class SettingsLitter(BaseModel):
downpos: int | None = None
dump_switch: int | None = Field(None, alias="dumpSwitch")
fixed_time_clear: int | None = Field(None, alias="fixedTimeClear")
kitten: int | None = Field(None, alias="kitten")
kitten: int | None
kitten_percent: float | None = Field(None, alias="kittenPercent")
kitten_tips_time: int | None = Field(None, alias="kittenTipsTime")
lack_liquid_notify: int | None = Field(None, alias="lackLiquidNotify")
lack_sand_notify: int | None = Field(None, alias="lackSandNotify")
language: str | None = Field(None, alias="language")
language: str | None
language_follow: int | None = Field(None, alias="languageFollow")
languages: list[str] | None = Field(None, alias="languages")
languages: list[str] | None
light_config: int | None = Field(None, alias="lightConfig")
light_mode: int | None = Field(None, alias="lightMode")
light_multi_range: list[Any] | None = Field(None, alias="lightMultiRange")
Expand All @@ -51,20 +51,20 @@ class SettingsLitter(BaseModel):
still_time: int | None = Field(None, alias="stillTime")
stop_time: int | None = Field(None, alias="stopTime")
underweight: int | None = Field(None, alias="underweight")
unit: int | None = Field(None, alias="unit")
unit: int | None
weight_popup: int | None = Field(None, alias="weightPopup")
work_notify: int | None = Field(None, alias="workNotify")
auto_product: int | None = Field(None, alias="autoProduct")
camera: int | None = Field(None, alias="camera")
camera: int | None
camera_config: int | None = Field(None, alias="cameraConfig")
cleanning_notify: int | None = Field(None, alias="cleanningNotify")
garbage_notify: int | None = Field(None, alias="garbageNotify")
highlight: int | None = Field(None, alias="highlight")
light_assist: int | None = Field(None, alias="lightAssist")
live_encrypt: int | None = Field(None, alias="liveEncrypt")
microphone: int | None = Field(None, alias="microphone")
microphone: int | None
move_notify: int | None = Field(None, alias="moveNotify")
night: int | None = Field(None, alias="night")
night: int | None
package_standard: list[int] | None = Field(None, alias="packageStandard")
pet_detection: int | None = Field(None, alias="petDetection")
pet_notify: int | None = Field(None, alias="petNotify")
Expand All @@ -76,9 +76,9 @@ class SettingsLitter(BaseModel):
tone_config: int | None = Field(None, alias="toneConfig")
tone_mode: int | None = Field(None, alias="toneMode")
tone_multi_range: list[list[int]] | None = Field(None, alias="toneMultiRange")
tumbling: int | None = Field(None, alias="tumbling")
upload: int | None = Field(None, alias="upload")
volume: int | None = Field(None, alias="volume")
tumbling: int | None
upload: int | None
volume: int | None
wander_detection: int | None = Field(None, alias="wanderDetection")


Expand Down

0 comments on commit ce80b2c

Please sign in to comment.