Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit 729146f

Browse files
authored
fix: fix typo attribue -> attribute (#627)
Closes #626
1 parent 0644b52 commit 729146f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gapic/templates/%namespace/%name_%version/%sub/services/%service/async_client.py.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ class {{ service.async_client_name }}:
203203
{% if method.retry.max_backoff %}maximum={{ method.retry.max_backoff }},{% endif %}
204204
{% if method.retry.backoff_multiplier %}multiplier={{ method.retry.backoff_multiplier }},{% endif %}
205205
predicate=retries.if_exception_type(
206-
{%- for ex in method.retry.retryable_exceptions|sort(attribue='__name__') %}
206+
{%- for ex in method.retry.retryable_exceptions|sort(attribute='__name__') %}
207207
exceptions.{{ ex.__name__ }},
208208
{%- endfor %}
209209
),

0 commit comments

Comments
 (0)