Skip to content

Commit

Permalink
fix(translate): Change default to empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey authored and Chris Mackey committed Feb 24, 2021
1 parent 47b2554 commit ef8cc2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pollination/honeybee_energy/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class SimParDefault(Function):
run_period = Inputs.str(
description='An AnalysisPeriod string or an IDF RunPeriod string to set the '
'start and end dates of the simulation (eg. "6/21 to 9/21 between 0 and 23 @1").'
' If None, the simulation will be annual.', default='None'
' If None, the simulation will be annual.', default=''
)

north = Inputs.int(
Expand Down Expand Up @@ -82,7 +82,7 @@ class BaselineOrientationSimPars(Function):
run_period = Inputs.str(
description='An AnalysisPeriod string or an IDF RunPeriod string to set the '
'start and end dates of the simulation (eg. "6/21 to 9/21 between 0 and 23 @1").'
' If None, the simulation will be annual.', default='None'
' If None, the simulation will be annual.', default=''
)

north = Inputs.int(
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pollination-dsl>=0.10.0
honeybee-energy>=1.67.8
honeybee-energy>=1.67.9

0 comments on commit ef8cc2f

Please sign in to comment.