Skip to content

Commit

Permalink
fix: remove extra space before_pb_options (#863)
Browse files Browse the repository at this point in the history
* fix: add async client to

* fix: remove extra space before_pb_options
  • Loading branch information
busunkim96 committed May 6, 2021
1 parent a77995d commit f0532e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -1,7 +1,7 @@
class {{ enum.name }}({{ p }}.Enum):
r"""{{ enum.meta.doc|rst(indent=4) }}"""
{% if enum.enum_pb.HasField("options") %}
_pb_options = {{ enum.options_dict }}
_pb_options = {{ enum.options_dict }}
{% endif %}
{% for enum_value in enum.values %}
{{ enum_value.name }} = {{ enum_value.number }}
Expand Down
@@ -1,7 +1,7 @@
class {{ enum.name }}({{ p }}.Enum):
r"""{{ enum.meta.doc|rst(indent=4) }}"""
{% if enum.enum_pb.HasField("options") %}
_pb_options = {{ enum.options_dict }}
_pb_options = {{ enum.options_dict }}
{% endif %}
{% for enum_value in enum.values %}
{{ enum_value.name }} = {{ enum_value.number }}
Expand Down

0 comments on commit f0532e7

Please sign in to comment.