Skip to content

Commit 2f6118d

Browse files
committed
fix more linting
1 parent 4d0452a commit 2f6118d

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

src/atomate2/common/flows/eos.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,9 @@ def make(self, structure: Structure, prev_dir: str | Path = None) -> Flow:
9696
relax_flow.name = "EOS equilibrium relaxation"
9797

9898
try:
99-
for job in relax_flow.jobs:
100-
job.append_name(" EOS equilibrium relaxation")
99+
if len(relax_flow.jobs) > 1:
100+
for job in relax_flow.jobs:
101+
job.append_name(" EOS equilibrium relaxation")
101102
except AttributeError:
102103
pass
103104
flow_output["initial_relax"] = {
@@ -159,8 +160,9 @@ def make(self, structure: Structure, prev_dir: str | Path = None) -> Flow:
159160
)
160161
relax_job.name += f" deformation {frame_idx}"
161162
try:
162-
for job in relax_job.jobs:
163-
job.append_name(f" deformation {frame_idx}")
163+
if len(relax_job.jobs) > 1:
164+
for job in relax_job.jobs:
165+
job.append_name(f" deformation {frame_idx}")
164166
except AttributeError:
165167
pass
166168
jobs["relax"].append(relax_job)

tests/vasp/flows/test_eos.py

+10-6
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@
2323

2424
expected_incar_deform = expected_incar_relax | {"ISIF": 2}
2525

26-
expected_incar_static = expected_incar_relax | {"NSW": 0, "IBRION": -1, "ISMEAR": -5}
26+
expected_incar_static = expected_incar_relax | {
27+
"NSW": 0,
28+
"IBRION": -1,
29+
"ISMEAR": -5,
30+
}
2731
expected_incar_static.pop("ISIF")
2832

2933

@@ -77,11 +81,13 @@ def test_mp_eos_maker(
7781
n_frames: int = 2,
7882
linear_strain: tuple = (-0.05, 0.05),
7983
):
84+
relax_job_name_1 = "EOS MP GGA relax 1 EOS equilibrium relaxation"
85+
relax_job_name_2 = "EOS MP GGA relax 2 EOS equilibrium relaxation"
8086
base_ref_path = "Si_EOS_MP_GGA/"
8187
ref_paths = {}
8288
expected_incars = {
83-
"EOS MP GGA relax 1 EOS equilibrium relaxation": expected_incar_relax_1,
84-
"EOS MP GGA relax 2 EOS equilibrium relaxation": expected_incar_relax,
89+
relax_job_name_1: expected_incar_relax_1,
90+
relax_job_name_2: expected_incar_relax,
8591
}
8692

8793
for idx in range(2):
@@ -118,9 +124,7 @@ def test_mp_eos_maker(
118124
)
119125

120126
structure = Structure.from_file(
121-
f"{vasp_test_dir}/{
122-
ref_paths['EOS MP GGA relax 1 EOS equilibrium relaxation']
123-
}/inputs/POSCAR.gz"
127+
f"{vasp_test_dir}/{ref_paths[relax_job_name_1]}/inputs/POSCAR.gz"
124128
)
125129

126130
# cannot perform least-squares fit for four parameters with only 3 data points

0 commit comments

Comments
 (0)