diff --git a/zotify/app.py b/zotify/app.py index 0cf1da1..441cee8 100644 --- a/zotify/app.py +++ b/zotify/app.py @@ -252,6 +252,9 @@ class App: return collections def scan(self, collections: list[Collection], match: bool): + if self.__config.replace_existing: + return + if match: for collection in collections: collection.get_match() diff --git a/zotify/utils.py b/zotify/utils.py index b263f54..0de959d 100644 --- a/zotify/utils.py +++ b/zotify/utils.py @@ -1,4 +1,4 @@ -from argparse import Action, ArgumentError +from argparse import Action from enum import Enum, IntEnum from pathlib import Path from re import IGNORECASE, sub @@ -146,7 +146,7 @@ class OptionalOrFalse(Action): self, option_strings, dest, - nargs="?", + nargs=0, default=None, type=None, choices=None, @@ -175,8 +175,6 @@ class OptionalOrFalse(Action): ) def __call__(self, parser, namespace, values, option_string=None): - if values is not None: - raise ArgumentError(self, "expected 0 arguments") setattr( namespace, self.dest,