removes reportUnknownParameterType (pyright), disallows any generics (mypy)

This commit is contained in:
Mose Müller
2023-11-30 09:49:29 +01:00
parent f5d8775141
commit eb0c819037
2 changed files with 2 additions and 3 deletions

View File

@ -7,7 +7,7 @@ from pydase.utils.warnings import (
)
class DataServiceList(list):
class DataServiceList(list[Any]):
"""
DataServiceList is a list with additional functionality to trigger callbacks
whenever an item is set. This can be used to track changes in the list items.