exception handling

This commit is contained in:
0xFugue
2023-07-19 12:16:26 +05:30
parent 3509a780a8
commit 6ff99ef42a

View File

@@ -408,7 +408,7 @@ def _sanity_check(fname, ftype="json", keys):
log.error(f'YAML is not yet supported : {fname}')
sys.exit(0)
except Exception as ex:
raise typer.BadParameter(str(ex))
@app.command()