diff --git a/masque/file/gdsii_arrow.py b/masque/file/gdsii_arrow.py index 32e1a4a..dd238d3 100644 --- a/masque/file/gdsii_arrow.py +++ b/masque/file/gdsii_arrow.py @@ -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)