From 10a1f5b3d6faae7103066ae069a7886465624b1c Mon Sep 17 00:00:00 2001 From: Mariatta Date: Wed, 13 Mar 2019 22:13:00 -0700 Subject: [PATCH] Fix docstring in hello_clock.py example It was just a double quoted string. It should be triple quoted. --- examples/hello_clock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello_clock.py b/examples/hello_clock.py index ca178e2..b9ad764 100644 --- a/examples/hello_clock.py +++ b/examples/hello_clock.py @@ -2,7 +2,7 @@ async def print_every_second(): - "Print seconds" + """Print seconds""" while True: for i in range(60): print(i, 's')