Skip to content

Commit e5f67a8

Browse files
committed
Fix ref_material not being referenced
1 parent 1964055 commit e5f67a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/openlifu/seg/seg_methods/uniform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def to_table(self) -> pd.DataFrame:
1818
:returns: Pandas DataFrame of the segmentation method parameters
1919
"""
2020
records = [{"Name": "Type", "Value": "Uniform Tissue", "Unit": ""},
21-
{"Name": "Reference Material", "Value": self._ref_material, "Unit": ""}]
21+
{"Name": "Reference Material", "Value": self.ref_material, "Unit": ""}]
2222
return pd.DataFrame.from_records(records)
2323

2424
class UniformTissue(UniformSegmentation):

0 commit comments

Comments
 (0)