We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ee33c5 commit 2a2cfd4Copy full SHA for 2a2cfd4
src/result/result.py
@@ -559,7 +559,7 @@ def wrapper(
559
try:
560
first_bit = next(gen)
561
except StopIteration as e:
562
- return e.value
+ return e.value # type: ignore[no-any-return]
563
except exceptions as exc:
564
yield Err(exc)
565
return None
@@ -576,7 +576,7 @@ def wrapper(
576
577
yield_value = gen.send(send_value)
578
579
580
581
send_value = yield Err(exc)
582
0 commit comments