Skip to content

Commit

Permalink
fix(hyfi): change __hyfi_path__ to __global_hyfi__ in src_path default
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Jul 26, 2023
1 parent 1acd9ca commit 86e1aaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hyfi/__click__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from hyfi._version import __version__
from hyfi.copier import Copier
from hyfi.core import __hyfi_path__
from hyfi.core import __global_hyfi__
from hyfi.core.config import HyfiConfig
from hyfi.main import HyFI
from hyfi.utils.logging import LOGGING
Expand Down Expand Up @@ -58,7 +58,7 @@ def cli(ctx, config: str, print: bool):
@click.option(
"--src_path",
show_default=True,
default=f"{__hyfi_path__()}/conf",
default=f"{__global_hyfi__.hyfi_package_name}/{__global_hyfi__.hyfi_config_dirname}",
help="Source path to copy from",
)
@click.option(
Expand Down

0 comments on commit 86e1aaa

Please sign in to comment.