Skip to content

Commit

Permalink
fix(core): change object property access
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Jul 25, 2023
1 parent a564ff1 commit dba1f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hyfi/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def get_plugins(self, plugins: List[str]) -> List[str]:
@property
def package_name(self) -> str:
"""Returns the name of the package."""
self.__package_name__ = os.path.basename(self.__package_path__)
self.__package_name__ = os.path.basename(self.package_path)
return self.__package_name__

@property
Expand Down

0 comments on commit dba1f0d

Please sign in to comment.