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 9cb2b9a commit 4a76f8fCopy full SHA for 4a76f8f
google/cloud/error_reporting/client.py
@@ -17,8 +17,6 @@
17
import os
18
import traceback
19
20
-import six
21
-
22
try:
23
from google.cloud.error_reporting._gapic import make_report_error_api
24
except ImportError: # pragma: NO COVER
@@ -268,7 +266,7 @@ def _build_error_report(
268
266
# strip out None values
269
267
payload["context"]["httpRequest"] = {
270
key: value
271
- for key, value in six.iteritems(http_context_dict)
+ for key, value in http_context_dict.items()
272
if value is not None
273
}
274
if user:
0 commit comments