finished deployment

This commit is contained in:
2026-01-14 23:34:39 +01:00
parent fcaa6b3543
commit 4e56da2c65
2 changed files with 11 additions and 10 deletions

View File

@@ -103,7 +103,7 @@ def solve_combo(combo):
return None
def main(img_path="files/secret_message.png", verbose=True):
def main(img_path="./output/secret_message.png", verbose=True):
img = Image.open(img_path)
global new_image
new_image = Image.new("RGB", (img.height, img.height))
@@ -144,5 +144,8 @@ def main(img_path="files/secret_message.png", verbose=True):
if __name__ == "__main__":
main()
if len(sys.argv) == 2:
main(sys.argv[1])
else:
main()