Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kalisp committed Nov 7, 2024
1 parent ba7293d commit 86ddfb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/ayon_deadline/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def get_limit_groups_by_server_name(self, server_name: str) -> List[str]:

return limit_groups

def get_machines_by_server_nameserver(self, server_name: str) -> List[str]:
def get_machines_by_server_name(self, server_name: str) -> List[str]:
"""Returns dictionary of machines/workers per DL server
Args:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def apply_settings(cls, project_settings):
{"value": limit_group, "label": limit_group})

machines = (
deadline_addon.get_machines_by_server_nameserver(deadline_server_name))
deadline_addon.get_machines_by_server_name(deadline_server_name))
for machine in machines:
cls.machines_enum_values.append(
{"value": machine, "label": machine})
Expand Down

0 comments on commit 86ddfb8

Please sign in to comment.