mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 22:14:08 +00:00
sby: core: removed invalid None check in setup section
This commit is contained in:
parent
41b4ce5a7e
commit
de40cc499f
|
@ -415,10 +415,6 @@ class SbyConfig:
|
|||
|
||||
args = line.strip().split(maxsplit = 1)
|
||||
|
||||
|
||||
if args is None:
|
||||
self.error(f"sby file syntax error: unknown key in '[setup]' section")
|
||||
|
||||
if len(args) < 2:
|
||||
self.error(f"sby file syntax error: entry in '[setup]' must have an argument, got '{' '.join(args)}'")
|
||||
|
||||
|
|
Loading…
Reference in a new issue