Skip to content

Commit

Permalink
style: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tazlin committed Dec 6, 2024
1 parent 5c71e5b commit 6206cff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ def tracked_dependencies() -> list[str]:
return TRACKED_DEPENDENCIES


def get_dependency_versions(requirements_file_path: str) -> dict[str, str]:
def get_dependency_versions(requirements_file_path: str | Path) -> dict[str, str]:
"""Get the versions of horde dependencies from the given requirements file."""
requirements_file_path = Path(requirements_file_path)

with open(requirements_file_path) as f:
requirements = f.readlines()

Expand Down

0 comments on commit 6206cff

Please sign in to comment.