We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26c6812 commit 426650aCopy full SHA for 426650a
1 file changed
archinstall/lib/models/device_model.py
@@ -890,7 +890,7 @@ class PartitionModification:
890
def __post_init__(self) -> None:
891
# needed to use the object as a dictionary key due to hash func
892
if not hasattr(self, '_obj_id'):
893
- self._obj_id: uuid.UUID | str = uuid.uuid4()
+ self._obj_id = uuid.uuid4()
894
895
if self.is_exists_or_modify() and not self.dev_path:
896
raise ValueError('If partition marked as existing a path must be set')
@@ -1157,7 +1157,7 @@ class LvmVolume:
1157
1158
1159
1160
1161
1162
@override
1163
def __hash__(self) -> int:
0 commit comments