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

Commit

Permalink
chore: drop six (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Sep 21, 2021
1 parent b706993 commit ff95e8c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions google/cloud/monitoring_v3/query.py
Expand Up @@ -22,8 +22,6 @@
import copy
import datetime

import six

import google.cloud.monitoring_v3 as monitoring_v3
from google.cloud.monitoring_v3 import _dataframe
from google.cloud.monitoring_v3 import types
Expand Down Expand Up @@ -599,7 +597,7 @@ def __str__(self):
def _build_label_filter(category, *args, **kwargs):
"""Construct a filter string to filter on metric or resource labels."""
terms = list(args)
for key, value in six.iteritems(kwargs):
for key, value in kwargs.items():
if value is None:
continue

Expand Down

0 comments on commit ff95e8c

Please sign in to comment.