Navigation Menu

Skip to content

Commit

Permalink
fix: replace unsafe six.PY3 with PY2 for better future compatibility …
Browse files Browse the repository at this point in the history
…with Python 4 (#10081)

* fix: fix for Python 4: replace unsafe six.PY3 with PY2

* Fix wording
  • Loading branch information
hugovk authored and plamut committed Jan 15, 2020
1 parent 6596c4b commit 975c1ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions synth.py
Expand Up @@ -127,10 +127,10 @@
"google/cloud/pubsub_v1/gapic/publisher_client.py",
"class PublisherClient",
"""# TODO: remove conditional import after Python 2 support is dropped
if six.PY3:
from collections.abc import Mapping
else:
if six.PY2:
from collections import Mapping
else:
from collections.abc import Mapping
def _merge_dict(d1, d2):
Expand Down

0 comments on commit 975c1ac

Please sign in to comment.