We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0c4a94 commit f05a3f8Copy full SHA for f05a3f8
1 file changed
mpt_api_client/rql/query_builder.py
@@ -1,4 +1,5 @@
1
import datetime as dt
2
+from collections.abc import Iterable
3
from decimal import Decimal
4
from typing import Any, Self, override
5
@@ -46,7 +47,7 @@ def __str__(self) -> str:
46
47
return str(self.value)
48
49
-def parse_kwargs(query_dict: dict[str, QueryValue]) -> list[str]: # noqa: WPS231
50
+def parse_kwargs(query_dict: dict[str, QueryValue | Iterable[QueryValue]]) -> list[str]: # noqa: WPS231
51
"""
52
Parse keyword arguments into RQL query expressions.
53
0 commit comments