Skip to content

Commit a2cebef

Browse files
committed
Fix filtersDict type hint
1 parent 25909ae commit a2cebef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plexapi/mixins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def _parseFilterGroups(self, feed: Deque[Tuple[str, str]], returnOn: Union[Set[s
111111

112112
def _parseQueryFeed(self, feed: "deque[Tuple[str, str]]") -> dict:
113113
""" Parse the query string into a dict. """
114-
filtersDict = {}
114+
filtersDict: dict[str, Union[str, int, list, dict]] = {}
115115
special_keys = {"type", "sort"}
116116
integer_keys = {"includeGuids", "limit"}
117117
as_is_keys = {"group", "having"}

0 commit comments

Comments
 (0)