Skip to content

Commit

Permalink
Can be empty
Browse files Browse the repository at this point in the history
  • Loading branch information
bra-fsn committed May 24, 2024
1 parent ae1fb34 commit 549d94a
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 @@ -47,7 +47,7 @@ class Task(BaseModel):
vendors_only: set = set() # run for these vendors only, empty means all
parallel: bool = False # should we run this task concurrently with other tasks in the same priority group?
priority: int | float = math.inf # lower priority runs earlier, missing means last
version_command: str | list | None # command to run to get the version
version_command: str | list | None = None # command to run to get the version
command: str | list # command to run
transform_output: list[Callable] = [transform.raw] # functions to transform the output on the inspected node, write as raw if missing
parse_output: list[Callable] = [] # functions to parse the already collected outputs from the repo
Expand Down

0 comments on commit 549d94a

Please sign in to comment.