Skip to content

Commit

Permalink
PEP8 cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezra Peisach committed Nov 11, 2024
1 parent c26ada1 commit 6a819ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wwpdb/apps/ann_tasks_v2/utils/MergeXyz.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def run(self, entryId, inpFile, updateInput=True):
inpPath = os.path.join(self.__sessionPath, inpFile)
logPath1 = os.path.join(self.__sessionPath, entryId + "-merge-xyz.log")
retPath = os.path.join(self.__sessionPath, entryId + "_model-updated_P1.cif")
for filePath in ( retPath, logPath1 ):
for filePath in (retPath, logPath1):
if os.access(filePath, os.R_OK):
os.remove(filePath)
#
Expand Down

0 comments on commit 6a819ab

Please sign in to comment.