Skip to content

Commit

Permalink
fix(folderutil): Fixed a path-related bug in folderutil
Browse files Browse the repository at this point in the history
  • Loading branch information
built-test authored and built-tools committed Nov 12, 2021
1 parent b6d2f8b commit 5486c26
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions honeybee_radiance_folder/folderutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ def __init__(
self, identifier, default, direct, black=None, tmtx=None, vmtx=None,
dmtx=None):
SceneState.__init__(self, identifier, default, direct)
self.black = _as_posix(black)
self.tmtx = _as_posix(tmtx)
self.vmtx = _as_posix(vmtx)
self.dmtx = _as_posix(dmtx)
self.black = _as_posix(black) if black is not None else None
self.tmtx = _as_posix(tmtx) if tmtx is not None else None
self.vmtx = _as_posix(vmtx) if vmtx is not None else None
self.dmtx = _as_posix(dmtx) if dmtx is not None else None

@classmethod
def from_dict(cls, input_dict):
Expand Down

0 comments on commit 5486c26

Please sign in to comment.