Skip to content

Commit 07d8eb3

Browse files
arihant2mathyouknowone
authored andcommitted
add test
1 parent 0a1c8c3 commit 07d8eb3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from collections.abc import Awaitable, Callable
2+
from typing import TypeVar
3+
4+
T = TypeVar("T")
5+
6+
def abort_signal_handler(
7+
fn: Callable[[], Awaitable[T]], on_abort: Callable[[], None] | None = None
8+
) -> T:
9+
pass

0 commit comments

Comments
 (0)