Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelduchesne committed Sep 20, 2024
1 parent c645c15 commit 2db7197
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archetypal/eplus_interface/basement.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def run(self):

# The BasementGHTin.idf file is copied from the self.include list
self.include = [Path(file).copy(self.run_dir) for file in self.idf.include]
if "BasementGHTIn.idf" not in self.include:
if "BasementGHTIn.idf" not in [p.basename() for p in self.include]:
self.cleanup_callback()
return

Expand Down

0 comments on commit 2db7197

Please sign in to comment.