Skip to content

Commit 4bcb1b4

Browse files
committed
fix(folder): Add condition that checks if static is the only light path
1 parent 4b4baf8 commit 4bcb1b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

honeybee_radiance_folder/folder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ def _update_dict(dict, key, value):
829829
else:
830830
# else added to three phase
831831
_update_dict(three_phase_dict, elem, grid)
832-
elif not exclude_static:
832+
elif not exclude_static and len(light_path) == 1:
833833
# static apertures
834834
_update_dict(two_phase_dict, '__static_apertures__', grid)
835835
if not light_paths:

0 commit comments

Comments
 (0)