Skip to content
This repository was archived by the owner on Dec 31, 2023. It is now read-only.

Commit ff95e8c

Browse files
authored
chore: drop six (#220)
1 parent b706993 commit ff95e8c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

google/cloud/monitoring_v3/query.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
import copy
2323
import datetime
2424

25-
import six
26-
2725
import google.cloud.monitoring_v3 as monitoring_v3
2826
from google.cloud.monitoring_v3 import _dataframe
2927
from google.cloud.monitoring_v3 import types
@@ -599,7 +597,7 @@ def __str__(self):
599597
def _build_label_filter(category, *args, **kwargs):
600598
"""Construct a filter string to filter on metric or resource labels."""
601599
terms = list(args)
602-
for key, value in six.iteritems(kwargs):
600+
for key, value in kwargs.items():
603601
if value is None:
604602
continue
605603

0 commit comments

Comments
 (0)