Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions batbot/batbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@

def pipeline_filepath_validator(ctx, param, value):
if not exists(value):
log.error(f'Input filepath does not exist: {value}')
ctx.exit()
raise click.BadParameter(f'Input filepath does not exist: {value}')
return value


Expand Down
Loading