Skip to content

Commit 924cfe9

Browse files
committed
Fixes ci
1 parent 6c5120f commit 924cfe9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

returns/maybe.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
Callable,
99
Coroutine,
1010
Generic,
11-
NoReturn,
1211
Optional,
1312
TypeVar,
1413
Union,
@@ -225,7 +224,7 @@ def Some(inner_value: Optional[_ValueType]) -> Maybe[_ValueType]: # noqa: N802
225224

226225

227226
#: Public unit value of protected `_Nothing` type.
228-
Nothing: Maybe[NoReturn] = _Nothing()
227+
Nothing: Maybe[Any] = _Nothing()
229228

230229

231230
@overload

0 commit comments

Comments
 (0)