Skip to content

Commit 40bab11

Browse files
authored
fix: ✏️ Type hint
1 parent 1fb4aae commit 40bab11

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

injection/entrypoint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def entrypointmaker[*Ts, **P, T1, T2](
3535
wrapped: EntrypointSetupMethod[*Ts, P, T1, T2],
3636
/,
3737
*,
38-
module: Module | None = ...,
38+
module: Module = ...,
3939
) -> EntrypointDecorator[P, T1, T2]: ...
4040

4141

@@ -44,7 +44,7 @@ def entrypointmaker[*Ts, **P, T1, T2](
4444
wrapped: None = ...,
4545
/,
4646
*,
47-
module: Module | None = ...,
47+
module: Module = ...,
4848
) -> Callable[
4949
[EntrypointSetupMethod[*Ts, P, T1, T2]],
5050
EntrypointDecorator[P, T1, T2],

0 commit comments

Comments
 (0)