We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2da01fd commit 6fdbbcbCopy full SHA for 6fdbbcb
packages/polywrap-core/polywrap_core/utils/get_implementations.py
@@ -43,7 +43,7 @@ def get_implementations(
43
interface, client, resolution_context
44
)
45
if final_current_interface_uri == final_interface_uri:
46
- impls = set(interfaces.get(interface, []))
+ impls: Set[Uri] = set(interfaces.get(interface, []))
47
final_implementations = final_implementations.union(impls)
48
49
return list(final_implementations) if final_implementations else None
0 commit comments