Skip to content

Commit

Permalink
Merge pull request #15 from gdsfactory/sourcery/0011
Browse files Browse the repository at this point in the history
0011 (Sourcery refactored)
  • Loading branch information
joamatab authored Jun 17, 2022
2 parents 0dbad3c + 2b51ffa commit c18bd08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sky130/spice_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def import_spice(name: str) -> Circuit:
FIXME!
"""
fields = name.split("_")
library_name = "_".join(fields[0:4])
library_name = "_".join(fields[:4])
library_path = PATH.spice / f"{library_name}.spice"
circuit = Circuit(name)
circuit.lib(library_path, name)
Expand Down

0 comments on commit c18bd08

Please sign in to comment.