Skip to content

Commit

Permalink
fix(entry): Add default local minimum sensor count
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkelkp committed Nov 22, 2024
1 parent 7f939e1 commit ee6f17e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pollination/utci_comfort_map/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class UtciComfortMapEntryPoint(DAG):
'precedence over the cpu_count and can be used to ensure that '
'the parallelization does not result in generating unnecessarily small '
'sensor grids. The default value is set to 1, which means that the '
'cpu_count is always respected.', default=500,
'cpu_count is always respected.', default=1000, default_local=500,
spec={'type': 'integer', 'minimum': 1},
alias=min_sensor_count_input
)
Expand Down

0 comments on commit ee6f17e

Please sign in to comment.