From a89c9a888628dd712e8701015203f7a58d5a1130 Mon Sep 17 00:00:00 2001 From: PROJECT ZERO <56379955+ProjectZeroDays@users.noreply.github.com> Date: Tue, 21 Jan 2025 06:52:44 -0600 Subject: [PATCH] Fix archive GUI Update `frontend/archive_gui.py` to fix indentation issue. * Fix indentation of `sys.exit(app.exec_())` in the `main` function. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/ProjectZeroDays/Project-Red-Sword?shareId=XXXX-XXXX-XXXX-XXXX). --- frontend/archive_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/archive_gui.py b/frontend/archive_gui.py index 28e9cfc..059556c 100644 --- a/frontend/archive_gui.py +++ b/frontend/archive_gui.py @@ -29,4 +29,4 @@ def analyze_sources(self): app = QApplication(sys.argv) ex = ArchiveGUI() ex.show() - sys.exit(app.exec_()) \ No newline at end of file + sys.exit(app.exec_())