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

Commit 0354666

Browse files
committed
remove Any from ads templates
1 parent 89964fc commit 0354666

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports

gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/base.py.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% block content %}
44

55
import abc
6-
from typing import Any, Awaitable, Callable, Dict, Optional, Sequence, Union
6+
from typing import Awaitable, Callable, Dict, Optional, Sequence, Union
77

88
import google.auth # type: ignore
99
import google.api_core # type: ignore
@@ -98,7 +98,7 @@ class {{ service.name }}Transport(abc.ABC):
9898
host += ':443'
9999
self._host = host
100100

101-
self._wrapped_methods: Dict[Callable[..., Any], Callable[..., Any]] = {}
101+
self._wrapped_methods: Dict[Callable, Callable] = {}
102102

103103
# Save the scopes.
104104
self._scopes = scopes

0 commit comments

Comments
 (0)