Fixed indent error on write_size init

This commit is contained in:
Bugra Onal 2022-07-13 16:11:45 -07:00
parent 78d4e2aa8b
commit a38826f073
1 changed files with 3 additions and 3 deletions

View File

@ -377,9 +377,9 @@ def read_config(config_file, is_unit_test=True):
ports,
OPTS.tech_name)
# If write size is not defined, set it equal to word size
if OPTS.write_size == None:
OPTS.write_size = OPTS.word_size
# If write size is not defined, set it equal to word size
if OPTS.write_size == None:
OPTS.write_size = OPTS.word_size
def end_openram():