Remove unnecessary imports

This commit is contained in:
Eren Dogan 2023-08-02 21:28:21 -07:00
parent e1d0902680
commit 54fc34392d
3 changed files with 0 additions and 3 deletions

View File

@ -14,7 +14,6 @@ from openram.base import rom_verilog
from openram import OPTS, print_time
from openram.sram_factory import factory
from openram.tech import drc, layer, parameter
from openram.router import router_tech
class rom_bank(design,rom_verilog):

View File

@ -14,7 +14,6 @@ from openram.base import channel_route
from openram.base import design
from openram.base import verilog
from openram.base import lef
from openram.router import router_tech
from openram.sram_factory import factory
from openram.tech import spice
from openram import OPTS, print_time

View File

@ -3,6 +3,5 @@
# Copyright (c) 2016-2023 Regents of the University of California, Santa Cruz
# All rights reserved.
#
from .router_tech import *
from .signal_escape_router import *
from .supply_router import *