There was an error while loading. Please reload this page.
1 parent 43df1d9 commit b5d1f71Copy full SHA for b5d1f71
1 file changed
volara_proof/__main__.py
@@ -33,7 +33,6 @@ def run() -> None:
33
34
if not input_files_exist:
35
raise FileNotFoundError(f"No input files found in {INPUT_DIR}")
36
- extract_input()
37
38
proof = Proof(config)
39
proof_response = proof.generate()
@@ -44,19 +43,6 @@ def run() -> None:
44
43
logging.info(f"Proof generation complete: {proof_response}")
45
46
47
-def extract_input() -> None:
48
- """
49
- If the input directory contains any zip files, extract them
50
- :return:
51
52
- for input_filename in os.listdir(INPUT_DIR):
53
- input_file = os.path.join(INPUT_DIR, input_filename)
54
-
55
- if zipfile.is_zipfile(input_file):
56
- with zipfile.ZipFile(input_file, "r") as zip_ref:
57
- zip_ref.extractall(INPUT_DIR)
58
59
60
if __name__ == "__main__":
61
try:
62
run()
0 commit comments