Skip to content

Commit 6190ec7

Browse files
Update run_every microbit doc
To match PR docs: Add missing days parameter to microbit.run_every. (#767)
1 parent 5ff1eb7 commit 6190ec7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lang/en/typeshed/stdlib/microbit/__init__.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def run_every(
3232
3333
As a Decorator - placed on top of the function to schedule. For example::
3434
35-
@run_every(h=1, min=20, s=30, ms=50)
35+
@run_every(days=1, h=1, min=20, s=30, ms=50)
3636
def my_function():
3737
# Do something here
3838

0 commit comments

Comments
 (0)