Skip to content

Commit

Permalink
Clean up imports
Browse files Browse the repository at this point in the history
Remove unused import, make import absolute
  • Loading branch information
rtzll committed Oct 22, 2016
1 parent 6866bac commit e608523
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/api/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from flask import jsonify, make_response

from . import api
from app.api import api


@api.errorhandler(400)
Expand Down
2 changes: 0 additions & 2 deletions app/api/views.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# -*- coding: utf-8 -*-

from datetime import datetime

from flask import jsonify, request, abort, url_for

from app.api import api
Expand Down
1 change: 1 addition & 0 deletions app/decorators.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-

from functools import wraps

from flask import abort


Expand Down

0 comments on commit e608523

Please sign in to comment.