Skip to content

Commit

Permalink
fix naming of cells from vinsts
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-goeldi committed Oct 10, 2024
1 parent 82b7063 commit 178aec7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kfactory/kcell.py
Original file line number Diff line number Diff line change
Expand Up @@ -5959,7 +5959,7 @@ def insert_into(
f"_M{_trans.mirror}_S{_trans.angle}"
f"_X{_trans.disp.x}_Y{_trans.disp.y}"
).replace(".", "p")
_cell_name = _cell_name + _trans_str
_cell_name = _cell_name + clean_name(_trans_str)
if cell.kcl.layout.cell(_cell_name) is None:
_cell = KCell(kcl=self.cell.kcl, name=_cell_name) # self.cell.dup()
for layer, shapes in self.cell._shapes.items():
Expand Down

0 comments on commit 178aec7

Please sign in to comment.