We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0c4a94 commit 344faf2Copy full SHA for 344faf2
mpt_api_client/rql/query_builder.py
@@ -1,12 +1,13 @@
1
import datetime as dt
2
+from collections.abc import Iterable
3
from decimal import Decimal
4
from typing import Any, Self, override
5
6
from mpt_api_client.rql import constants
7
8
Numeric = int | float | Decimal
9
-QueryValue = str | bool | dt.date | dt.datetime | Numeric
10
+QueryValue = str | bool | dt.date | dt.datetime | Numeric | Iterable # type: ignore[type-arg] # noqa: WPS221
11
12
13
class RQLProperty:
0 commit comments