Skip to content

Commit d6af626

Browse files
committed
Tighten up type annotation in FuncType in canonical-abi/definitions.py
1 parent 91c73cb commit d6af626

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

design/mvp/canonical-abi/definitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class InstanceType(ExternType):
7070

7171
@dataclass
7272
class FuncType(ExternType):
73-
params: [ValType|typing.Tuple[str,ValType]]
73+
params: [typing.Tuple[str,ValType]]
7474
results: [ValType|typing.Tuple[str,ValType]]
7575
def param_types(self):
7676
return self.extract_types(self.params)

0 commit comments

Comments
 (0)