3
0
Fork 0
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:
Aki Van Ness 2022-08-18 05:52:38 -04:00
parent 41b4ce5a7e
commit de40cc499f
No known key found for this signature in database
GPG key ID: C629E8EC06327BEE

View file

@ -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)}'")