Skip to content

Commit

Permalink
Linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwaroquiers committed Sep 10, 2024
1 parent ec0e071 commit 1ec98c1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/atomate2/turbomole/custodian/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@ def run(self, directory="./"):
"""
cmd = [self.executable, *self.options]

with open(self.output_file, "w") as f_out, open(
self.stderr_file, "w", buffering=1
) as f_err:
with (
open(self.output_file, "w") as f_out,
open(self.stderr_file, "w", buffering=1) as f_err,
):
p = subprocess.Popen(cmd, stdout=f_out, stderr=f_err)
return p

Expand Down

0 comments on commit 1ec98c1

Please sign in to comment.