Skip to content

Commit

Permalink
remote entities: fix replace-identified-by cli
Browse files Browse the repository at this point in the history
* Adds default value `None` (all) for option -f --field.

Co-Authored-by: Peter Weber <[email protected]>
  • Loading branch information
rerowep committed Nov 29, 2023
1 parent 9fec81b commit 4946358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rero_ils/modules/entities/remote_entities/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def sync_errors(clear, verbose):


@entity.command('replace-identified-by')
@click.option('-f', '--field', multiple=True)
@click.option('-f', '--field', multiple=True, default=None)
@click.option('-n', '--dry-run', is_flag=True, default=False)
@click.option('-v', '--verbose', count=True, default=0)
@click.option('-l', '--log-dir', default=None)
Expand Down

0 comments on commit 4946358

Please sign in to comment.