Skip to content

Commit

Permalink
Typehint writer.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtarzia committed Feb 13, 2024
1 parent ede50a7 commit 04b7a33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stk/_internal/writers/turbomole.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""

from __future__ import annotations

import pathlib
import typing

from stk._internal.molecule import Molecule
Expand Down Expand Up @@ -144,7 +144,7 @@ def to_string(
def write(
self,
molecule: Molecule,
path: str,
path: pathlib.Path | str,
atom_ids: typing.Optional[OneOrMany[int]] = None,
periodic_info: typing.Optional[PeriodicInfo] = None,
) -> None:
Expand Down

0 comments on commit 04b7a33

Please sign in to comment.