We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0c4a94 commit 95e98b3Copy full SHA for 95e98b3
mpt_api_client/rql/query_builder.py
@@ -1,12 +1,14 @@
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
+PrimitiveQueryValue = str | bool | dt.date | dt.datetime | Numeric
11
+QueryValue = PrimitiveQueryValue | Iterable # type: ignore[type-arg]
12
13
14
class RQLProperty:
0 commit comments