We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8ccaa1 commit f674b69Copy full SHA for f674b69
pydruid/query.py
@@ -14,8 +14,8 @@
14
# limitations under the License.
15
#
16
17
-import collections
18
import json
+from collections.abc import MutableSequence
19
20
from pydruid.utils.aggregators import build_aggregators
21
from pydruid.utils.dimensions import build_dimension
@@ -25,7 +25,7 @@
25
from pydruid.utils.query_utils import UnicodeWriter
26
27
28
-class Query(collections.abc.MutableSequence):
+class Query(MutableSequence):
29
"""
30
Query objects are produced by PyDruid clients and can be used for
31
exporting query results into TSV files or
0 commit comments