Initial ruff pass

This commit is contained in:
Jon Michael Aanes 2025-04-21 11:22:18 +02:00
parent d196155bf7
commit 7e292ddc5b
2 changed files with 15 additions and 5 deletions

View File

@ -240,7 +240,9 @@ def push_changes(
# Get commit messages for PR description
commit_messages = get_commit_messages(
cwd, repository_config.base_branch, branch_name,
cwd,
repository_config.base_branch,
branch_name,
)
description = f'This pull request resolves #{issue_number}\n\n'
@ -266,7 +268,9 @@ def push_changes(
# Extract PR number and URL if available
return IssueResolution(
True, str(pr_response.get('number')), pr_response.get('html_url'),
True,
str(pr_response.get('number')),
pr_response.get('html_url'),
)
@ -388,7 +392,9 @@ def solve_issue_in_repository(
def solve_issues_in_repository(
repository_config: RepositoryConfig, client, seen_issues_db,
repository_config: RepositoryConfig,
client,
seen_issues_db,
):
"""Process all open issues with the 'aider' label.

View File

@ -23,7 +23,9 @@ class TestHasCommitsOnBranch:
# Verify get_commit_messages was called with correct arguments
mock_get_commit_messages.assert_called_once_with(
self.cwd, self.base_branch, self.current_branch,
self.cwd,
self.base_branch,
self.current_branch,
)
@patch('aider_gitea.get_commit_messages')
@ -39,7 +41,9 @@ class TestHasCommitsOnBranch:
# Verify get_commit_messages was called with correct arguments
mock_get_commit_messages.assert_called_once_with(
self.cwd, self.base_branch, self.current_branch,
self.cwd,
self.base_branch,
self.current_branch,
)
@patch('aider_gitea.get_commit_messages')