Skip to content

Commit

Permalink
chore: drop six (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Sep 21, 2021
1 parent 9cb2b9a commit 4a76f8f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions google/cloud/error_reporting/client.py
Expand Up @@ -17,8 +17,6 @@
import os
import traceback

import six

try:
from google.cloud.error_reporting._gapic import make_report_error_api
except ImportError: # pragma: NO COVER
Expand Down Expand Up @@ -268,7 +266,7 @@ def _build_error_report(
# strip out None values
payload["context"]["httpRequest"] = {
key: value
for key, value in six.iteritems(http_context_dict)
for key, value in http_context_dict.items()
if value is not None
}
if user:
Expand Down

0 comments on commit 4a76f8f

Please sign in to comment.