Skip to content

Commit

Permalink
removed reflected list warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTesla committed Aug 9, 2024
1 parent 5ecbd0e commit 3482fdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xyzcad/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ def renderAndSave(func, filename, res=1):
version_inst = None
print(f"running xyzcad version {version_run} (installed: {version_inst})")

tlt_L = [List(e) for e in tlt]
tlt_L = List([List([List(f) for f in e]) for e in tlt])
verticesArray = all_njit_func(func, res, tlt_L)
print("all_njit_func time: {}".format(time.time() - t0))

Expand Down

0 comments on commit 3482fdc

Please sign in to comment.