Browse Source

Profile fix

pull/3/head
Jure Šorn 6 years ago
parent
commit
e0eb374219
1 changed files with 2 additions and 2 deletions
  1. 4
      README.md

4
README.md

@ -809,8 +809,8 @@ Profile
```python
from time import time
start_time = time()
...
duration = (time() - start_time)
<code>
duration = time() - start_time
```
#### Times execution of the passed code:

Loading…
Cancel
Save