Skip to content

Commit

Permalink
Lowercase task name
Browse files Browse the repository at this point in the history
  • Loading branch information
bra-fsn committed May 17, 2024
1 parent b2c0b9e commit dd75f10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inspector/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def get_taskgroups(vendor: str) -> dict[tuple[float, bool], list[Task]]:
if inspect.isclass(model) and issubclass(model, Task) and model not in (Task, DockerTask):
# I couldn't find a better way to have the model's class name inside the instance other than to
# explicitly pass it as an argument
obj = model(name=model.__name__)
obj = model(name=model.__name__.lower())
# only add the task if vendor is listed in vendors_only or if it's empty
if vendor in obj.vendors_only or not obj.vendors_only:
# execute parallel tasks first by negating the parallel option, so it gets forward during sorting
Expand Down

0 comments on commit dd75f10

Please sign in to comment.