diff --git a/mikeio1d/result_network/result_location.py b/mikeio1d/result_network/result_location.py index e3d878c2..1092c211 100644 --- a/mikeio1d/result_network/result_location.py +++ b/mikeio1d/result_network/result_location.py @@ -49,7 +49,6 @@ def _repr_html_(self) -> str: @property def res1d(self) -> Res1D: """The Res1D instance that this location belongs to.""" - # TODO: Consider to remove this property for version 1.0.0 return self._creator.res1d @property diff --git a/mikeio1d/result_network/result_locations.py b/mikeio1d/result_network/result_locations.py index 391394f1..081f0abe 100644 --- a/mikeio1d/result_network/result_locations.py +++ b/mikeio1d/result_network/result_locations.py @@ -54,7 +54,6 @@ def _repr_html_(self) -> str: @property def res1d(self) -> Res1D: """The Res1D instance that these locations belong to.""" - # TODO: Consider to remove this property for version 1.0.0 return self._creator.res1d @property diff --git a/mikeio1d/result_network/result_structure.py b/mikeio1d/result_network/result_structure.py index d7def4a0..e4db2468 100644 --- a/mikeio1d/result_network/result_structure.py +++ b/mikeio1d/result_network/result_structure.py @@ -74,15 +74,6 @@ def res1d_reach(self) -> IRes1DReach: """DHI.Mike1D.ResultDataAccess.IRes1DReach corresponding to this result structure.""" return self._creator.reach - @property - def structure_id(self): - """Get structure ID.""" - # TODO: Remove this in 1.0.0 - warn( - "Please use .id instead of .structure_id. This attribute will be removed in the future." - ) - return self.id - @property def id(self) -> str: """Structure ID."""