|  | @@ -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):
 |