mirror of https://github.com/VLSIDA/OpenRAM.git
PEP8 cleanup
This commit is contained in:
parent
03f87cd681
commit
8d9a4cc27b
|
|
@ -5,10 +5,11 @@
|
||||||
# (acting for and on behalf of Oklahoma State University)
|
# (acting for and on behalf of Oklahoma State University)
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
import debug
|
|
||||||
import math
|
import math
|
||||||
import tech
|
import tech
|
||||||
|
|
||||||
|
|
||||||
class vector():
|
class vector():
|
||||||
"""
|
"""
|
||||||
This is the vector class to represent the coordinate
|
This is the vector class to represent the coordinate
|
||||||
|
|
|
||||||
|
|
@ -369,11 +369,9 @@ class bank(design.design):
|
||||||
3 * self.m2_pitch,
|
3 * self.m2_pitch,
|
||||||
drc("nwell_to_nwell"))
|
drc("nwell_to_nwell"))
|
||||||
|
|
||||||
|
|
||||||
def add_modules(self):
|
def add_modules(self):
|
||||||
""" Add all the modules using the class loader """
|
""" Add all the modules using the class loader """
|
||||||
|
|
||||||
|
|
||||||
local_array_size = OPTS.local_array_size
|
local_array_size = OPTS.local_array_size
|
||||||
|
|
||||||
if local_array_size > 0:
|
if local_array_size > 0:
|
||||||
|
|
|
||||||
|
|
@ -302,4 +302,3 @@ class local_bitcell_array(bitcell_base_array.bitcell_base_array):
|
||||||
Clears the bit exclusions
|
Clears the bit exclusions
|
||||||
"""
|
"""
|
||||||
self.bitcell_array.clear_exclude_bits()
|
self.bitcell_array.clear_exclude_bits()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue