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 360a5b6 commit 26d278aCopy full SHA for 26d278a
lang/en/typeshed/stdlib/log.pyi
@@ -92,7 +92,7 @@ def delete(full=False):
92
def set_mirroring(serial: bool):
93
"""Mirrors the data logging activity to the serial output.
94
95
- Example: ``log.set_mirroring(true)``
+ Example: ``log.set_mirroring(True)``
96
97
Mirroring is disabled by default.
98
lang/en/typeshed/stdlib/time.pyi
@@ -127,6 +127,6 @@ def ticks_diff(ticks1: int, ticks2: int) -> int:
127
task.run()
128
elif ticks_diff(scheduled_time, now) < 0:
129
print("Oops, running late, tell task to run faster!")
130
- task.run(run_faster=true)
+ task.run(run_faster=True)
131
"""
132
...
0 commit comments