Skip to content

Commit cad8750

Browse files
committed
Merge branch 'doc/fix-randrange' of https://github.com/tekktrik/circuitpython into doc/fix-randrange
2 parents 666579a + 3a59730 commit cad8750

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-bindings/random/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_1(random_getrandbits_obj, random_getrandbits);
8080
//| @overload
8181
//| def randrange(start: int, stop: int) -> int: ...
8282
//| @overload
83-
//| def randrange(start: int, stop: int, step: int):
83+
//| def randrange(start: int, stop: int, step: int) -> int:
8484
//| """Returns a randomly selected integer from ``range(start[, stop[, step]])``."""
8585
//| ...
8686
//|

0 commit comments

Comments
 (0)