Skip to content

Commit fd681ca

Browse files
authored
minor fix for struct_time docs
1 parent 3dcd603 commit fd681ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-bindings/time/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ mp_obj_t struct_time_make_new(const mp_obj_type_t *type, size_t n_args, const mp
9191
}
9292

9393
//| class struct_time:
94-
//| def __init__(self, time_tuple: Sequence) -> None:
94+
//| def __init__(self, time_tuple: Sequence[int]) -> None:
9595
//| """Structure used to capture a date and time. Can be constructed from a `struct_time`, `tuple`, `list`, or `namedtuple` with 9 elements.
9696
//|
9797
//| :param Sequence time_tuple: Sequence of time info: ``(tm_year, tm_mon, tm_mday, tm_hour, tm_min, tm_sec, tm_wday, tm_yday, tm_isdst)``

0 commit comments

Comments
 (0)