Skip to content

Commit

Permalink
Fix Mypy error in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhad6 committed Nov 13, 2023
1 parent 1d2701f commit c7d77d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/_param_data/test_collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from tests.helpers import CustomParamList, CustomParamDict
from paramdb import ParamData, ParamList, ParamDict

ParamCollection = Union[ParamList, ParamDict]
ParamCollection = Union[ParamList[Any], ParamDict[Any]]
Contents = Union[list[Any], dict[str, Any]]
CustomParamCollection = Union[CustomParamList, CustomParamDict]

Expand Down

0 comments on commit c7d77d6

Please sign in to comment.