[gdsii_arrow] clean unused var in loop
This commit is contained in:
parent
b4d287f384
commit
f78ba3655e
@ -204,7 +204,7 @@ def read_arrow(
|
|||||||
)
|
)
|
||||||
|
|
||||||
mlib = Library()
|
mlib = Library()
|
||||||
for cc, cell in enumerate(libarr['cells']):
|
for cc in range(len(libarr['cells'])):
|
||||||
name = cell_names[cell_ids[cc]]
|
name = cell_names[cell_ids[cc]]
|
||||||
pat = Pattern()
|
pat = Pattern()
|
||||||
_boundaries_to_polygons(pat, global_args, elements['boundaries'], cc)
|
_boundaries_to_polygons(pat, global_args, elements['boundaries'], cc)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user