Skip to content

Commit 18eff2f

Browse files
committed
Fix linting
1 parent 703f1dd commit 18eff2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ensemble_md/cli/run_REXEE.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,11 +318,11 @@ def main():
318318
if rank == 0:
319319
# If previous swaps were performed undo them
320320
for j in range(REXEE.n_sim):
321-
gro_backup = f'{REXEE.working_dir}/sim_{swap_list[j][0]}/iteration_{i-1}/confout_backup.gro'
321+
gro_backup = f'{REXEE.working_dir}/sim_{swap_list[j][0]}/iteration_{i-1}/confout_backup.gro' # noqa: E501
322322
gro = f'{REXEE.working_dir}/sim_{swap_list[j][0]}/iteration_{i-1}/confout.gro'
323323
if os.path.exists(gro_backup):
324324
os.rename(gro_backup, gro)
325-
325+
326326
for j in range(len(swap_list)):
327327
print('\nModifying the coordinates of the following output GRO files ...')
328328
# gro_1 and gro_2 are the simlation outputs (that we want to back up) and the inputs to modify_coords # noqa: E501

0 commit comments

Comments
 (0)