We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b2d395 commit 051872eCopy full SHA for 051872e
1 file changed
sdks/python/apache_beam/yaml/yaml_provider.py
@@ -29,6 +29,7 @@
29
import uuid
30
from typing import Any
31
from typing import Callable
32
+from typing import Dict
33
from typing import Iterable
34
from typing import Mapping
35
@@ -106,7 +107,7 @@ def as_provider_list(name, lst):
106
107
108
class ExternalProvider(Provider):
109
"""A Provider implemented via the cross language transform service."""
- _provider_types = {}
110
+ _provider_types: Dict[str, Callable[..., Provider]] = {}
111
112
def __init__(self, urns, service):
113
self._urns = urns
0 commit comments