Skip to content

Commit

Permalink
remove confusing default value
Browse files Browse the repository at this point in the history
  • Loading branch information
aliciaaevans committed Apr 5, 2024
1 parent 323ac1e commit 45c6b37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bioconda_utils/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def remove_cycles(dag, name2recipes, failed, skip_dependent):
return dag.subgraph(name for name in dag if name not in nodes_in_cycles)


def get_subdags(dag, n_workers, worker_offset, subdag_depth = 0):
def get_subdags(dag, n_workers, worker_offset, subdag_depth):
if n_workers > 1 and worker_offset >= n_workers:
raise ValueError(
"n-workers is less than the worker-offset given! "
Expand Down

0 comments on commit 45c6b37

Please sign in to comment.