Skip to content

Commit

Permalink
feat: return JobTypes.types dynamically
Browse files Browse the repository at this point in the history
  • Loading branch information
KernAttila committed Mar 28, 2023
1 parent b2df688 commit 9ec6c19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cuesubmit/cuesubmit/JobTypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ def build(cls, jobType, *args, **kwargs):

@classmethod
def types(cls):
"""return a list of types available."""
return [cls.SHELL, cls.MAYA, cls.NUKE, cls.BLENDER]
"""return a list of available types."""
return list(cls.SETTINGS_MAP.keys())

0 comments on commit 9ec6c19

Please sign in to comment.