Skip to content

Commit

Permalink
style: format code with Black, isort and Prettier (#1788)
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in 97d8597 according to
the output
from Black, isort and Prettier.

Details: None

Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
  • Loading branch information
deepsource-autofix[bot] authored Feb 29, 2024
1 parent 97d8597 commit 2d444c1
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions src/quacc/recipes/vasp/mp.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,17 +411,15 @@ def mp_metagga_relax_flow(
MPMetaGGARelaxFlowSchema
Dictionary of results. See the type-hint for the data structure.
"""
(mp_metagga_prerelax_job_, mp_metagga_relax_job_, mp_metagga_static_job_) = (
customize_funcs(
[
"mp_metagga_prerelax_job",
"mp_metagga_relax_job",
"mp_metagga_static_job",
],
[mp_metagga_prerelax_job, mp_metagga_relax_job, mp_metagga_static_job],
parameters=job_params,
decorators=job_decorators,
)
(
mp_metagga_prerelax_job_,
mp_metagga_relax_job_,
mp_metagga_static_job_,
) = customize_funcs(
["mp_metagga_prerelax_job", "mp_metagga_relax_job", "mp_metagga_static_job"],
[mp_metagga_prerelax_job, mp_metagga_relax_job, mp_metagga_static_job],
parameters=job_params,
decorators=job_decorators,
)

# Run the prerelax
Expand Down

0 comments on commit 2d444c1

Please sign in to comment.