Skip to content

Commit

Permalink
fix(core): rename config path methods
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Jul 22, 2023
1 parent cb61b92 commit 8cf724e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/hyfi/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def config_module(self) -> str:
return f"{self.__package_name__}.{self.__config_path__}"

@property
def config_path(self) -> str:
def config_module_path(self) -> str:
"""Returns the path to the configuration module."""
return f"pkg://{self.config_module}"

Expand Down Expand Up @@ -102,9 +102,9 @@ def user_config_path(self) -> str:
return self.__user_config_path__

@property
def hyfi_config_path(self) -> str:
def hyfi_config_module_path(self) -> str:
"""Returns the path to the HyFI root folder"""
return self.config_path
return self.config_module_path

@property
def hyfi_config_module(self) -> str:
Expand Down

0 comments on commit 8cf724e

Please sign in to comment.