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 86ba82b commit 1c4325bCopy full SHA for 1c4325b
packages/google-cloud-monitoring/google/cloud/monitoring_v3/query.py
@@ -22,8 +22,6 @@
22
import copy
23
import datetime
24
25
-import six
26
-
27
import google.cloud.monitoring_v3 as monitoring_v3
28
from google.cloud.monitoring_v3 import _dataframe
29
from google.cloud.monitoring_v3 import types
@@ -599,7 +597,7 @@ def __str__(self):
599
597
def _build_label_filter(category, *args, **kwargs):
600
598
"""Construct a filter string to filter on metric or resource labels."""
601
terms = list(args)
602
- for key, value in six.iteritems(kwargs):
+ for key, value in kwargs.items():
603
if value is None:
604
continue
605
0 commit comments