Skip to content

Commit

Permalink
fix: adjust indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 committed Nov 12, 2020
1 parent 6aa99b0 commit a867c88
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
{%- for proto in api.protos.values() if proto.file_to_generate and proto.messages %}
from .{{proto.module_name }} import (
{%- for message in proto.messages.values() %}
{{message.name }}, {% endfor %}
{{message.name }}, {% endfor %}
{%- for enum in proto.enums.values() %}
{{ enum.name }}, {% endfor %}
{{ enum.name }}, {% endfor %}
){% endfor %}

__all__ = (
Expand Down

0 comments on commit a867c88

Please sign in to comment.