Skip to content

Commit ed314bf

Browse files
committed
Fixes CI
1 parent 29273dc commit ed314bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/pages/io.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ to mark impure parts of the program that do not fail.
3030
>>> import random
3131
>>> from returns.io import IO
3232
>>> def get_random_number() -> IO[int]:
33-
... return IO(random.randint(0, 10))
33+
... return IO(random.randint(1, 10))
3434
...
3535
>>> assert isinstance(get_random_number(), IO)
3636

0 commit comments

Comments
 (0)