mirror of
https://github.com/samsledje/D-SCRIPT.git
synced 2026-06-08 09:04:22 +08:00
8 lines
174 B
Python
8 lines
174 B
Python
import os
|
|
|
|
deletes = []
|
|
print(len(deletes))
|
|
for item in deletes:
|
|
if os.path.exists(f"dscript/pdbs_large/{item}.pdb"):
|
|
os.remove(f"dscript/pdbs_large/{item}.pdb")
|