Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBurchLog committed Feb 28, 2024
1 parent 13114cc commit c3942df
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions brewtils/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1649,7 +1649,7 @@ def __init__(
scope_namespaces=None,
scope_systems=None,
scope_instances=None,
scope_verisons=None,
scope_versions=None,
scope_commands=None,
):
self.permission = permission or "READ_ONLY"
Expand All @@ -1660,7 +1660,7 @@ def __init__(
self.scope_namespaces = scope_namespaces or []
self.scope_systems = scope_systems or []
self.scope_instances = scope_instances or []
self.scope_verisons = scope_verisons or []
self.scope_versions = scope_versions or []
self.scope_commands = scope_commands or []

def __str__(self):
Expand All @@ -1679,7 +1679,7 @@ def __repr__(self):
self.scope_namespaces,
self.scope_systems,
self.scope_instances,
self.scope_verisons,
self.scope_versions,
self.scope_commands,
)

Expand Down
2 changes: 1 addition & 1 deletion brewtils/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ class RoleSchema(BaseSchema):
scope_namespaces = fields.List(fields.Str(), allow_none=True)
scope_systems = fields.List(fields.Str(), allow_none=True)
scope_instances = fields.List(fields.Str(), allow_none=True)
scope_verisons = fields.List(fields.Str(), allow_none=True)
scope_versions = fields.List(fields.Str(), allow_none=True)
scope_commands = fields.List(fields.Str(), allow_none=True)


Expand Down

0 comments on commit c3942df

Please sign in to comment.