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 23s

This commit is contained in:
Jon Michael Aanes 2025-04-23 23:27:18 +02:00
parent ec179b1f0b
commit df9d207913

View File

@ -6,11 +6,16 @@ It assumes that the default branch (default "main") exists and that you have a v
import argparse
import logging
import time
import sys
from . import CODE_MODEL, EVALUATOR_MODEL
import time
from . import RepositoryConfig, secrets, solve_issues_in_repository
from . import (
CODE_MODEL,
EVALUATOR_MODEL,
RepositoryConfig,
secrets,
solve_issues_in_repository,
)
from .gitea_client import GiteaClient
from .seen_issues_db import SeenIssuesDB