removes warning when using dict as attribute

This commit is contained in:
Mose Müller 2024-04-25 14:23:59 +02:00
parent de7badd007
commit 036e80b920

View File

@ -73,7 +73,7 @@ class DataService(AbstractDataService):
if not issubclass(
value_class,
(int | float | bool | str | list | Enum | u.Quantity | Observable),
(int | float | bool | str | list | dict | Enum | u.Quantity | Observable),
):
logger.warning(
"Class '%s' does not inherit from DataService. This may lead to"