diff --git a/isso/db/comments.py b/isso/db/comments.py index 3bf37c1..ea4c642 100644 --- a/isso/db/comments.py +++ b/isso/db/comments.py @@ -2,7 +2,6 @@ import time -from isso.db import spam from isso.utils import Bloomfilter from isso.compat import buffer diff --git a/isso/db/spam.py b/isso/db/spam.py index b86361b..1dc02c5 100644 --- a/isso/db/spam.py +++ b/isso/db/spam.py @@ -1,7 +1,6 @@ # -*- encoding: utf-8 -*- import time -import functools class Guard: diff --git a/isso/views/comments.py b/isso/views/comments.py index fbe29c0..aa3ecb1 100644 --- a/isso/views/comments.py +++ b/isso/views/comments.py @@ -15,7 +15,7 @@ from werkzeug.exceptions import BadRequest, Forbidden, NotFound from isso.compat import text_type as str -from isso import utils, local, db +from isso import utils, local from isso.utils import http, parse, markdown from isso.utils.crypto import pbkdf2 from isso.views import requires