Ruff after aider
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 25s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s

This commit is contained in:
Jon Michael Aanes 2025-04-24 10:32:54 +02:00
parent 1fcf0753f1
commit 0a5c8ea36b

View File

@ -8,7 +8,13 @@ import argparse
import logging
import time
from . import RepositoryConfig, secrets, solve_issues_in_repository, CODE_MODEL, EVALUATOR_MODEL
from . import (
CODE_MODEL,
EVALUATOR_MODEL,
RepositoryConfig,
secrets,
solve_issues_in_repository,
)
from .gitea_client import GiteaClient
from .seen_issues_db import SeenIssuesDB
@ -63,6 +69,7 @@ def main():
args = parse_args()
# override default models from CLI
import aider_gitea
aider_gitea.CODE_MODEL = args.aider_model
aider_gitea.EVALUATOR_MODEL = args.evaluator_model