From 3804523de437caa663c83db07ec5ca71b9155887 Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Sat, 13 May 2017 10:42:33 +0200 Subject: [PATCH] Fix import order. --- accountant/views/users.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/accountant/views/users.py b/accountant/views/users.py index 2056dfb..4961fed 100644 --- a/accountant/views/users.py +++ b/accountant/views/users.py @@ -15,10 +15,9 @@ along with Accountant. If not, see . """ # vim: set tw=80 ts=4 sw=4 sts=4: -import arrow - from functools import wraps +import arrow from flask import request, g, current_app as app from flask_restplus import Namespace, Resource, fields, marshal_with_field