Fix __repr__ on workspace user model
This commit is contained in:
parent
21251ec8c2
commit
dd3b6676d3
@ -67,8 +67,5 @@ class WorkspaceUser(object):
|
|||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "<WorkspaceUser(user='{}', role='{}', workspace='{}', num_environment_roles='{}')>".format(
|
return "<WorkspaceUser(user='{}', role='{}', workspace='{}', num_environment_roles='{}')>".format(
|
||||||
self.user.full_name,
|
self.user_name, self.role, self.workspace.name, self.num_environment_roles
|
||||||
self.role,
|
|
||||||
self.workspace.name,
|
|
||||||
self.num_environment_roles,
|
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user