From eed73088e11fe9648ad05ae25c77a2c0cb7df679 Mon Sep 17 00:00:00 2001 From: "Jon Michael Aanes (aider)" Date: Mon, 14 Apr 2025 23:38:57 +0200 Subject: [PATCH 1/2] chore: add __init__.py to test directory to resolve namespace package warning --- test/__init__.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 test/__init__.py diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 0000000..83d6473 --- /dev/null +++ b/test/__init__.py @@ -0,0 +1 @@ +# This file makes the test directory a proper package instead of an implicit namespace package -- 2.45.1 From df47ac59a960110e260516af353e63f8fddea4cf Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Mon, 14 Apr 2025 23:39:01 +0200 Subject: [PATCH 2/2] Ruff --- aider_gitea/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/aider_gitea/__init__.py b/aider_gitea/__init__.py index 04caf41..920e556 100644 --- a/aider_gitea/__init__.py +++ b/aider_gitea/__init__.py @@ -137,9 +137,7 @@ def create_aider_command(issue: str) -> list[str]: 'aider', '--chat-language', 'english', - '--cache-prompts' - '--no-stream' - '--model', + '--cache-prompts--no-stream--model', MODEL, '--test-cmd', AIDER_TEST, -- 2.45.1