From 7a9806aa8cae22ea8c672cdf565cba899d68face Mon Sep 17 00:00:00 2001 From: Somdev Sangwan Date: Sun, 20 Jan 2019 14:14:20 +0530 Subject: [PATCH] removed unused import --- core/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/utils.py b/core/utils.py index 985fb24..ca8672b 100644 --- a/core/utils.py +++ b/core/utils.py @@ -1,5 +1,4 @@ import re -import math from core.config import token def longestCommonSubstring(s1, s2): @@ -77,4 +76,4 @@ def getParams(url, data, GET): params[each[0]] = each[1] except IndexError: params = None - return params \ No newline at end of file + return params