args.index no longer exists

This commit is contained in:
Daoud Clarke 2022-07-30 10:57:15 +01:00
parent ea32c0ba00
commit 063ebb4504

View file

@ -36,7 +36,7 @@ def run():
if existing_index.page_size != PAGE_SIZE or existing_index.num_pages != NUM_PAGES:
print(f"Existing index page sizes ({existing_index.page_size}) and number of pages "
f"({existing_index.num_pages}) does not match - removing.")
os.remove(args.index)
os.remove(index_path)
existing_index = None
except FileNotFoundError:
existing_index = None