Skip to content

Commit

Permalink
Fix type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-S-Rosen committed Apr 23, 2024
1 parent 89f7c8b commit 549f978
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/quacc/recipes/orca/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from ase.atoms import Atoms
from numpy.typing import NDArray

from quacc.schemas._aliases.cclib import cclibSchema
from quacc.schemas._aliases.cclib import cclibASEOptSchema, cclibSchema
from quacc.utils.files import Filenames, SourceDirectory


Expand Down Expand Up @@ -233,7 +233,7 @@ def ase_relax_job(
opt_params: dict[str, Any] | None = None,
nprocs: int | Literal["max"] = "max",
copy_files: SourceDirectory | dict[SourceDirectory, Filenames] | None = None,
) -> cclibSchema:
) -> cclibASEOptSchema:
"""
Carry out a geometry optimization.
Expand Down Expand Up @@ -302,7 +302,7 @@ def ase_quasi_irc_perturb_job(
opt_params: dict[str, Any] | None = None,
nprocs: int | Literal["max"] = "max",
copy_files: SourceDirectory | dict[SourceDirectory, Filenames] | None = None,
) -> cclibSchema:
) -> cclibASEOptSchema:
"""
Quasi-IRC to optimize a reaction endpoint from a transition-state with known vibrational frequency modes.
Perturbs the structure of `atoms` by a finite amount (0.6 * the normalized mode magnitude) along the specified
Expand Down

0 comments on commit 549f978

Please sign in to comment.