Fix spelling in switchbee (#79195)

This commit is contained in:
Jafar Atili 2022-09-28 15:18:06 +03:00 committed by GitHub
parent cce23683f1
commit 4453241176
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 6 deletions

View file

@ -29,8 +29,7 @@ class SwitchBeeCoordinator(DataUpdateCoordinator[Mapping[int, SwitchBeeBaseDevic
"""Initialize."""
self.api: CentralUnitAPI = swb_api
self._reconnect_counts: int = 0
self.mac_formated: str | None = (
self.mac_formatted: str | None = (
None if self.api.mac is None else format_mac(self.api.mac)
)