Fixed erroneous type hint

This commit is contained in:
Jan Mrna 2022-08-15 21:12:32 +02:00
parent 9c4504b1f3
commit f103820af8

View File

@ -33,7 +33,7 @@ class Device(ABC):
"""
@abstractmethod
def get_data(self) -> Dict[str:Any]:
def get_data(self) -> Dict[str, Any]:
"""
Get dict with all data from sensor;
used for logging purposes