This commit is contained in:
Pim Nelissen
2026-05-03 17:38:09 +02:00
parent 40b09971ff
commit 54ae0c4c0d

View File

@ -84,7 +84,11 @@ def main():
"""
elif args.config:
input_config = args.config
else:
logger.warning(
"No input provided. Try --example or --config path/to/config.yml. "
)
sys.exit(1)
try:
cp = ConfigParser(input_config).parse()
if cp.options.seed is None: