Skip to content

Commit

Permalink
update to 0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jasminabrar authored Nov 22, 2023
1 parent 9b68c23 commit 5e2250c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions klayout_dot_config/python/SiEPIC/extend.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@


import pya

'''
warning = pya.QMessageBox()
warning.setStandardButtons(pya.QMessageBox.Ok)
warning.setDefaultButton(pya.QMessageBox.Ok)
Expand All @@ -75,7 +75,7 @@
warning = pya.QMessageBox()
warning.setStandardButtons(pya.QMessageBox.Ok)
warning.setDefaultButton(pya.QMessageBox.Ok)
'''

#################################################################################
# SiEPIC Class Extension of Layout Class #
#################################################################################
Expand Down Expand Up @@ -1717,8 +1717,8 @@ def find_pins(self, verbose=False):
print("Instance.find_pins, self: %s" % self)
print("Instance.find_pins, cplx_trans: %s" % self.cplx_trans)
found_pins, errors = self.cell.find_pins(verbose)
return [pin.transform(self.cplx_trans) for pin in self.cell.find_pins(verbose)]
#return [pin.transform(self.cplx_trans) for pin in self.cell.find_pins(verbose)[0]], errors
#return [pin.transform(self.cplx_trans) for pin in self.cell.find_pins(verbose)]
return [pin.transform(self.cplx_trans) for pin in self.cell.find_pins(verbose)[0]], errors

# find the Pin's Point, whose name matches the input, for the given Instance
def pinPoint(self, pin_name, verbose=False):
Expand Down

0 comments on commit 5e2250c

Please sign in to comment.