diff --git a/README.md b/README.md index 64b37df..d6e4a4b 100644 --- a/README.md +++ b/README.md @@ -1271,7 +1271,8 @@ duration = time() - start_time #### Times execution of the passed code: ```python from timeit import timeit -timeit('"-".join(str(n) for n in range(100))', number=10000, globals=globals()) +timeit('"-".join(str(n) for n in range(100))', + number=10000, globals=globals()) ``` #### Generates a PNG image of call graph and highlights the bottlenecks: