Skip to content

Commit

Permalink
fix: undo cached
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Sep 5, 2024
1 parent 71499f4 commit ed30ceb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sphinx_ape/build.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import shutil
from enum import Enum
from functools import cached_property
from pathlib import Path
from typing import Optional, Union

Expand Down Expand Up @@ -58,7 +57,7 @@ def __init__(
self._base_path = base_path or Path.cwd()
self._name = name or get_package_name()

@cached_property
@property
def docs_path(self) -> Path:
return self._base_path / "docs"

Expand Down

0 comments on commit ed30ceb

Please sign in to comment.