From 4770c548680557a3fc67634397b53cea2749565a Mon Sep 17 00:00:00 2001 From: "Jon Michael Aanes (aider)" Date: Sun, 13 Apr 2025 17:26:36 +0200 Subject: [PATCH] fix: correct function placement in aider_gitea/__main__.py --- aider_gitea/__main__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider_gitea/__main__.py b/aider_gitea/__main__.py index 7b891ee..9509d96 100644 --- a/aider_gitea/__main__.py +++ b/aider_gitea/__main__.py @@ -160,6 +160,7 @@ def load_issue_from_sqlite(issue_number: str, db_path: Path) -> tuple[str, str]: return result else: raise ValueError(f"Issue {issue_number} not found in the database.") + def parse_args(): parser = argparse.ArgumentParser(description="Download issues and create pull requests for a Gitea repository.") parser.add_argument("--owner", required=True, help="Owner of the repository")