Remove unnecessary imports

This commit is contained in:
Eren Dogan
2022-11-27 13:11:10 -08:00
parent fccdc3c45b
commit 2e7206343e
2 changed files with 0 additions and 6 deletions
-2
View File
@@ -249,7 +249,6 @@ class instance(geometry):
""" Return an absolute pin that is offset and transformed based on
this instance location. Index will return one of several pins."""
import copy
if index == -1:
pin = copy.deepcopy(self.mod.get_pin(name))
pin.transform(self.offset, self.mirror, self.rotate)
@@ -267,7 +266,6 @@ class instance(geometry):
""" Return an absolute pin that is offset and transformed based on
this instance location. """
import copy
pin = copy.deepcopy(self.mod.get_pins(name))
new_pins = []