Skip to content

Commit

Permalink
fix(multiphase): Remove optional lists
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkelkp authored and mostaphaRoudsari committed Jul 8, 2022
1 parent d4f26d9 commit ca66715
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions pollination/honeybee_radiance/multiphase.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,19 +278,17 @@ def prepare_multiphase(self):

two_phase_info = Outputs.list(
description='Output octree files list for the 2-Phase studies.',
path='two_phase.json',
path='two_phase.json'
)

three_phase_info = Outputs.list(
description='Output octree files list for the 3-Phase studies.',
path='three_phase.json',
optional=True
path='three_phase.json'
)

five_phase_info = Outputs.list(
description='Output octree files list for the 5-Phase studies.',
path='five_phase.json',
optional=True
path='five_phase.json'
)

grid_states_file = Outputs.file(
Expand Down

0 comments on commit ca66715

Please sign in to comment.