Skip to content

Commit daf917c

Browse files
author
Pieter Fiers
committed
perf_clock() import fix
1 parent 1939572 commit daf917c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operators/mesh_delaunay_voronoi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def execute(self, context):
212212
voronoiObj.select_set(True)
213213
obj.select_set(False)
214214
#Report
215-
t = round(timing.perf_clock() - t0, 2)
215+
t = round(perf_clock() - t0, 2)
216216
if self.meshType == "Edges":
217217
self.report({'INFO'}, "{} edges created in {} seconds".format(len(edgesIdx), t))
218218
else:

0 commit comments

Comments
 (0)