Skip to content

Commit

Permalink
Update base.py
Browse files Browse the repository at this point in the history
Fixed 386 from
_homology = pd.DataFrame to self._homology = pd.DataFrame
  • Loading branch information
ivanp1994 authored May 29, 2024
1 parent 1fa351b commit 5cf62b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PyMart/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ class DataSet(Base):
_homology: pd.DataFrame = field(init=False)

def __post_init__(self):
_homology = pd.DataFrame()
self._homology = pd.DataFrame()

@property
def config_xml(self):
Expand Down

0 comments on commit 5cf62b2

Please sign in to comment.