Fixed indent error on write_size init

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

View File

@ -378,9 +378,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():