Skip to content

Commit 585e618

Browse files
authored
fix: incorrect type annotation for async_startup_tasks (#1309)
1 parent dc2554a commit 585e618

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interactions/client/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ def __init__(
393393
self.waits: Dict[str, List] = {}
394394
self.owner_ids: set[Snowflake_Type] = set(owner_ids)
395395

396-
self.async_startup_tasks: list[tuple[Coroutine, Iterable[Any], dict[str:Any]]] = []
396+
self.async_startup_tasks: list[tuple[Callable[..., Coroutine], Iterable[Any], dict[str, Any]]] = []
397397
"""A list of coroutines to run during startup"""
398398

399399
# callbacks

0 commit comments

Comments
 (0)