Browse Source

import format

Bastien Sevajol 6 years ago
parent
commit
7220ef511b
No account linked to committer's email
1 changed files with 5 additions and 4 deletions
  1. 5 4
      tracim/views/core_api/user_controller.py

+ 5 - 4
tracim/views/core_api/user_controller.py View File

@@ -11,13 +11,14 @@ except ImportError:
11 11
     from http import client as HTTPStatus
12 12
 
13 13
 from tracim import hapic, TracimRequest
14
-from tracim.exceptions import NotAuthentificated, InsufficientUserProfile, \
15
-    UserNotExist
14
+from tracim.exceptions import NotAuthentificated
15
+from tracim.exceptions import InsufficientUserProfile
16
+from tracim.exceptions import UserNotExist
16 17
 from tracim.lib.core.user import UserApi
17 18
 from tracim.lib.core.workspace import WorkspaceApi
18 19
 from tracim.views.controllers import Controller
19
-from tracim.views.core_api.schemas import UserIdPathSchema, \
20
-    WorkspaceDigestSchema
20
+from tracim.views.core_api.schemas import UserIdPathSchema
21
+from tracim.views.core_api.schemas import WorkspaceDigestSchema
21 22
 
22 23
 
23 24
 class UserController(Controller):