remove unnecessary imports

This commit is contained in:
Martin Zimmermann 2013-11-17 15:49:25 +01:00
parent 17aa3e6fc5
commit 8196f3f465
3 changed files with 1 additions and 3 deletions

View File

@ -2,7 +2,6 @@
import time import time
from isso.db import spam
from isso.utils import Bloomfilter from isso.utils import Bloomfilter
from isso.compat import buffer from isso.compat import buffer

View File

@ -1,7 +1,6 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
import time import time
import functools
class Guard: class Guard:

View File

@ -15,7 +15,7 @@ from werkzeug.exceptions import BadRequest, Forbidden, NotFound
from isso.compat import text_type as str 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 import http, parse, markdown
from isso.utils.crypto import pbkdf2 from isso.utils.crypto import pbkdf2
from isso.views import requires from isso.views import requires