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 f4e095e commit 9ae9bb4Copy full SHA for 9ae9bb4
tutorials/python/decorators2020/decorators.py
@@ -17,7 +17,7 @@ def _timer(*args, **kwargs):
17
t0 = time.perf_counter()
18
value = func(*args, **kwargs)
19
t1 = time.perf_counter()
20
- print(f"elapsed time: {t1-t0} seconds")
+ print(f"elapsed time: {t1 - t0} seconds")
21
return value
22
23
return _timer
0 commit comments