From e0eb3742192d3d94618b2f1e4a18be13d136208e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 14 Apr 2018 04:33:26 +0200 Subject: [PATCH] Profile fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 91bb5dc..3a407af 100644 --- a/README.md +++ b/README.md @@ -809,8 +809,8 @@ Profile ```python from time import time start_time = time() -... -duration = (time() - start_time) + +duration = time() - start_time ``` #### Times execution of the passed code: