Skip to content

Commit

Permalink
fixed directory name issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rsexton2 committed Mar 4, 2024
1 parent 83511cb commit f9bcb9b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions basicrta/gibbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def __getitem__(self, item):
return getattr(self, item)

def _collect_res(self, adir):
print(adir)
if os.path.exists(f'{adir}/gibbs_{self.niter}.pkl'):
with open(f'{adir}/gibbs_{self.niter}.pkl', 'rb') as r:
self.residues[adir] = pickle.load(r)
Expand Down

0 comments on commit f9bcb9b

Please sign in to comment.