Skip to content

Commit

Permalink
bug fix: snap
Browse files Browse the repository at this point in the history
introduced after making change to find_pins()
  • Loading branch information
lukasc-ubc committed Nov 11, 2023
1 parent 5c62d60 commit cfb9240
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion klayout_dot_config/grain.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<salt-grain>
<name>siepic_tools</name>
<version>0.4.5</version>
<version>0.4.6</version>
<api-version>0.27</api-version>
<title>SiEPIC Tools</title>
<doc>Tools for designing Silicon Photonic Integrated Circuits, including waveguides, component simulations, functional verification, Calibre DRC verification, netlist extraction, circuit simulations. Framework and examples for creating layouts using scripts. Includes a generic PDK (GSiP). Other PDKs are installed separately, and depend on SiEPIC-Tools.</doc>
Expand Down
2 changes: 1 addition & 1 deletion klayout_dot_config/python/SiEPIC/extend.py
Original file line number Diff line number Diff line change
Expand Up @@ -1696,7 +1696,7 @@ def find_pins(self, verbose=False):
if verbose:
print("Instance.find_pins, self: %s" % self)
print("Instance.find_pins, cplx_trans: %s" % self.cplx_trans)
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]]

# 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 cfb9240

Please sign in to comment.