Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinAchondo committed May 23, 2024
1 parent cb487cf commit d3b803b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xppbe/Mesh/Mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ def __init__(self, molecule, mesh_properties, simulation='Main', path='', save_p
self.molecule_path = os.path.join(self.main_path,'Molecules',molecule) if molecule_path=='' else molecule_path

self.path_files = os.path.join(self.main_path,'Mesh','Temp')
shutil.rmtree(self.path_files)
if os.path.exists(self.path_files):
shutil.rmtree(self.path_files)
os.makedirs(self.path_files)
self.path_pqr = os.path.join(self.molecule_path,self.molecule+'.pqr')
self.path_xyzr = os.path.join(self.molecule_path,self.molecule+'.xyzr')
Expand Down

0 comments on commit d3b803b

Please sign in to comment.