Skip to content

Commit

Permalink
More check-in fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gazoodle committed Jan 27, 2025
1 parent 2e88eef commit faecfb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/geckolib/async_spa_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,12 +403,12 @@ def spa_name(self) -> str:
return self._spa_name

@property
def spa_descriptors(self) -> Optional[List[GeckoAsyncSpaDescriptor]]:
def spa_descriptors(self) -> list[GeckoAsyncSpaDescriptor] | None:
"""Get a list of the discovered spas, or None."""
return self._spa_descriptors

@property
def facade(self) -> Optional[GeckoAsyncFacade]:
def facade(self) -> GeckoAsyncFacade | None:
"""Get the connected facade, or None."""
return self._facade

Expand Down Expand Up @@ -444,7 +444,7 @@ def reconnect_button(self) -> GeckoAsyncSpaMan.ReconnectButton | None:
return self._reconnect_button

@property
def ping_sensor(self) -> Optional[GeckoAsyncSpaMan.PingSensor]:
def ping_sensor(self) -> GeckoAsyncSpaMan.PingSensor | None:
return self._ping_sensor

def __str__(self) -> str:
Expand Down

0 comments on commit faecfb4

Please sign in to comment.