Skip to content

Commit

Permalink
fix: fix typo attribue -> attribute (#627)
Browse files Browse the repository at this point in the history
Closes #626
  • Loading branch information
busunkim96 authored Sep 30, 2020
1 parent 0644b52 commit 729146f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ class {{ service.async_client_name }}:
{% if method.retry.max_backoff %}maximum={{ method.retry.max_backoff }},{% endif %}
{% if method.retry.backoff_multiplier %}multiplier={{ method.retry.backoff_multiplier }},{% endif %}
predicate=retries.if_exception_type(
{%- for ex in method.retry.retryable_exceptions|sort(attribue='__name__') %}
{%- for ex in method.retry.retryable_exceptions|sort(attribute='__name__') %}
exceptions.{{ ex.__name__ }},
{%- endfor %}
),
Expand Down

0 comments on commit 729146f

Please sign in to comment.