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 00:16:25 +02:00
parent b756e47dda
commit 1d54d6f495

View File

@ -8,11 +8,17 @@ import argparse
import logging
import time
from . import RepositoryConfig, secrets, solve_issues_in_repository
import aider_gitea
from . import (
CODE_MODEL,
EVALUATOR_MODEL,
RepositoryConfig,
secrets,
solve_issues_in_repository,
)
from .gitea_client import GiteaClient
from .seen_issues_db import SeenIssuesDB
from . import CODE_MODEL, EVALUATOR_MODEL
import aider_gitea
logger = logging.getLogger(__name__)