[gdsii_arrow] clean unused var in loop

This commit is contained in:
Jan Petykiewicz 2025-04-24 23:20:30 -07:00
parent b4d287f384
commit f78ba3655e

View File

@ -204,7 +204,7 @@ def read_arrow(
)
mlib = Library()
for cc, cell in enumerate(libarr['cells']):
for cc in range(len(libarr['cells'])):
name = cell_names[cell_ids[cc]]
pat = Pattern()
_boundaries_to_polygons(pat, global_args, elements['boundaries'], cc)