Skip to content

Commit 01a3b44

Browse files
committed
Python 3.9 compat
1 parent e29ca1d commit 01a3b44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wasmtime/component/_linker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from ._instance import Instance
66
from ._component import Component
77
from ._resource_type import ResourceType
8-
from typing import Union, Tuple, Callable, Optional, List, Any, Concatenate
8+
from typing import Union, Tuple, Callable, Optional, List, Any
99
from .._func import Slab
1010
from ._enter import catch_exceptions
1111
from ._types import ValType, FuncType
@@ -15,7 +15,7 @@
1515
ResourceDtor = Callable[[StoreContext, int], None]
1616
RESOURCE_DTORS: Slab[ResourceDtor] = Slab()
1717

18-
UserFunc = Callable[Concatenate[StoreContext, ...], Optional[Any]]
18+
UserFunc = Callable[..., Optional[Any]]
1919
FUNCTIONS: Slab[UserFunc] = Slab()
2020

2121

0 commit comments

Comments
 (0)