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 09:58:31 +02:00
parent e08de758fe
commit 5f66b7db43

View File

@ -8,8 +8,13 @@ import argparse
import logging
import time
from . import RepositoryConfig, secrets, solve_issues_in_repository
from . import 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 +68,7 @@ def main():
logging.basicConfig(level='INFO')
args = parse_args()
import aider_gitea as _pkg
_pkg.CODE_MODEL = args.aider_model
_pkg.EVALUATOR_MODEL = args.evaluator_model