Skip to content

Commit

Permalink
docs(input): Change description of north
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkelkp committed Jan 2, 2024
1 parent f6d8e29 commit be3fbda
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion pollination/irradiance/_prepare_folder.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ class AnnualIrradiancePrepareFolder(GroupedDAG):

north = Inputs.float(
default=0,
description='A number for rotation from north.',
description='A number between -360 and 360 for the counterclockwise '
'difference between the North and the positive Y-axis in degrees. This '
'can also be a Vector for the direction to North. (Default: 0).',
spec={'type': 'number', 'minimum': -360, 'maximum': 360},
alias=north_input
)
Expand Down
4 changes: 3 additions & 1 deletion pollination/irradiance/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ class AnnualIrradianceEntryPoint(DAG):

north = Inputs.float(
default=0,
description='A number for rotation from north.',
description='A number between -360 and 360 for the counterclockwise '
'difference between the North and the positive Y-axis in degrees. This '
'can also be a Vector for the direction to North. (Default: 0).',
spec={'type': 'number', 'minimum': -360, 'maximum': 360},
alias=north_input
)
Expand Down

0 comments on commit be3fbda

Please sign in to comment.