Changed device tracker name return to None

This commit is contained in:
Tomaae 2022-08-18 09:45:25 +02:00
parent 1722a3e346
commit 12a952a77d
No known key found for this signature in database
GPG key ID: 8360BBD8A381D1C0

View file

@ -97,9 +97,9 @@ class MikrotikHostDeviceTracker(MikrotikDeviceTracker):
return timedelta(seconds=track_network_hosts_timeout) return timedelta(seconds=track_network_hosts_timeout)
@property @property
def name(self) -> str: def name(self) -> Any:
"""Return the name.""" """Return the name."""
return "" return None
@property @property
def is_connected(self) -> bool: def is_connected(self) -> bool: