Skip to content

Commit c62b66f

Browse files
erichigginsjonmmease
authored andcommitted
Use uuid4 instead of uuid1 to generate trace uid (#1236)
* Use uuid4 instead of uuid1 to generate trace uid
1 parent 4c054a3 commit c62b66f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_plotly_utils/basevalidators.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2298,7 +2298,7 @@ def validate_coerce(self, v, skip_invalid=False):
22982298
# Set new UIDs
22992299
if self.set_uid:
23002300
for trace in v:
2301-
trace.uid = str(uuid.uuid1())
2301+
trace.uid = str(uuid.uuid4())
23022302

23032303
else:
23042304
if skip_invalid:

0 commit comments

Comments
 (0)