Skip to content
This repository was archived by the owner on May 31, 2021. It is now read-only.

Commit 10a1f5b

Browse files
authored
Fix docstring in hello_clock.py example
It was just a double quoted string. It should be triple quoted.
1 parent f556796 commit 10a1f5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/hello_clock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
async def print_every_second():
5-
"Print seconds"
5+
"""Print seconds"""
66
while True:
77
for i in range(60):
88
print(i, 's')

0 commit comments

Comments
 (0)