Skip to content

Commit

Permalink
Fix init component
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelius007 committed Aug 22, 2024
1 parent 4fa186f commit 73c202c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions custom_components/ecoflow_cloud/devices/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ class EcoflowDeviceInfo:
name: str
device_type: str
client_id: str
data_topic: str
set_topic: str
set_reply_topic: str
get_topic: str | None
get_reply_topic: str | None
data_topic: str | None = None
set_topic: str | None = None
set_reply_topic: str | None = None
get_topic: str | None = None
get_reply_topic: str | None = None
status_topic: str | None = None
client_id: str | None = None

Expand Down

0 comments on commit 73c202c

Please sign in to comment.