Skip to content

Commit

Permalink
Fix typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
pzehner committed Feb 23, 2024
1 parent 30a823a commit 4269eb8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/dependencmake/filesystem.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from typing import Optional

from path import Path

CACHE = Path("dependencmake")
Expand All @@ -10,7 +12,7 @@ def clean(
fetch: bool = False,
build: bool = False,
install: bool = False,
install_path: Path | None = None,
install_path: Optional[Path] = None,
):
"""Clean cache directories."""
if fetch:
Expand Down

0 comments on commit 4269eb8

Please sign in to comment.