Skip to content

Commit 5cf62b2

Browse files
authored
Update base.py
Fixed 386 from _homology = pd.DataFrame to self._homology = pd.DataFrame
1 parent 1fa351b commit 5cf62b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PyMart/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ class DataSet(Base):
383383
_homology: pd.DataFrame = field(init=False)
384384

385385
def __post_init__(self):
386-
_homology = pd.DataFrame()
386+
self._homology = pd.DataFrame()
387387

388388
@property
389389
def config_xml(self):

0 commit comments

Comments
 (0)