Skip to content

Commit f0532e7

Browse files
authored
fix: remove extra space before_pb_options (#863)
* fix: add async client to * fix: remove extra space before_pb_options
1 parent a77995d commit f0532e7

File tree

2 files changed

+2
-2
lines changed
  • gapic
    • ads-templates/%namespace/%name/%version/%sub/types
    • templates/%namespace/%name_%version/%sub/types

2 files changed

+2
-2
lines changed

gapic/ads-templates/%namespace/%name/%version/%sub/types/_enum.py.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class {{ enum.name }}({{ p }}.Enum):
22
r"""{{ enum.meta.doc|rst(indent=4) }}"""
33
{% if enum.enum_pb.HasField("options") %}
4-
_pb_options = {{ enum.options_dict }}
4+
_pb_options = {{ enum.options_dict }}
55
{% endif %}
66
{% for enum_value in enum.values %}
77
{{ enum_value.name }} = {{ enum_value.number }}

gapic/templates/%namespace/%name_%version/%sub/types/_enum.py.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class {{ enum.name }}({{ p }}.Enum):
22
r"""{{ enum.meta.doc|rst(indent=4) }}"""
33
{% if enum.enum_pb.HasField("options") %}
4-
_pb_options = {{ enum.options_dict }}
4+
_pb_options = {{ enum.options_dict }}
55
{% endif %}
66
{% for enum_value in enum.values %}
77
{{ enum_value.name }} = {{ enum_value.number }}

0 commit comments

Comments
 (0)