sane-bt-search: fix: parse --top as an integer

This commit is contained in:
Colin 2023-07-07 07:11:47 +00:00
parent ad4631a5a8
commit 5aeb6a5525

View File

@ -217,7 +217,7 @@ def main(args: list):
help = options.pop("help") help = options.pop("help")
json = options.pop("json") json = options.pop("json")
query = options.pop("query") query = options.pop("query")
top = options.pop("top") top = int(options.pop("top"))
verbose = options.pop("verbose") verbose = options.pop("verbose")
manga = options.pop("manga") manga = options.pop("manga")
@ -230,7 +230,6 @@ def main(args: list):
logging.getLogger().setLevel(logging.DEBUG) logging.getLogger().setLevel(logging.DEBUG)
num_listings = 1000 if full else int(top)
client = Client() client = Client()
results = client.query(query) results = client.query(query)
num_results = len(results) num_results = len(results)