Skip to content

Commit

Permalink
code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBurchLog committed Feb 20, 2024
1 parent 1aae05f commit 504d423
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
5 changes: 3 additions & 2 deletions brewtils/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1668,8 +1668,9 @@ def __str__(self):

def __repr__(self):
return (
"<Role: id=%s, name=%s, permission=%s, is_remote=%s, scope_garden=%s, scope_namespaces=%s, "
"scope_systems=%s, scope_instances=%s, scope_versions=%s, scope_commands=%s>"
"<Role: id=%s, name=%s, permission=%s, is_remote=%s, scope_garden=%s, "
"scope_namespaces=%s, scope_systems=%s, scope_instances=%s, "
"scope_versions=%s, scope_commands=%s>"
) % (
self.id,
self.name,
Expand Down
1 change: 0 additions & 1 deletion brewtils/schema_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ class SchemaParser(object):
"QueueSchema": brewtils.models.Queue,
"ParameterSchema": brewtils.models.Parameter,
"PatchSchema": brewtils.models.PatchOperation,
"UserSchema": brewtils.models.User,
"RefreshTokenSchema": brewtils.models.RefreshToken,
"RequestSchema": brewtils.models.Request,
"RequestFileSchema": brewtils.models.RequestFile,
Expand Down
2 changes: 0 additions & 2 deletions brewtils/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@
"GardenSchema",
"OperationSchema",
"UserSchema",
"UserCreateSchema",
"UserListSchema",
"RoleSchema",
"GardenDomainIdentifierSchema",
"SystemDomainIdentifierSchema",
Expand Down

0 comments on commit 504d423

Please sign in to comment.