Changed pure random UUID of measurement to time-based UUID

This commit is contained in:
Anne de Jong 2023-12-19 12:26:22 +01:00
parent c610c6350d
commit 87283e4aba

View File

@ -379,7 +379,7 @@ class Measurement:
""" """
Create new UUID for measurement and store in file. Create new UUID for measurement and store in file.
""" """
self.setAttribute('UUID', str(uuid.uuid4())) self.setAttribute('UUID', str(uuid.uuid1()))
@property @property
def UUID(self): def UUID(self):