None check syntax fix

This commit is contained in:
Bugra Onal 2022-07-13 16:36:14 -07:00
parent a75951b5b1
commit 9bd3f1b45a
1 changed files with 1 additions and 1 deletions

View File

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