Skip to content

Fix lint workflow failure by applying Black formatting updates - #25

Draft
safiullah-24 with Copilot wants to merge 2 commits into
mainfrom
copilot/fix-lint-failing-job
Draft

Fix lint workflow failure by applying Black formatting updates#25
safiullah-24 with Copilot wants to merge 2 commits into
mainfrom
copilot/fix-lint-failing-job

Conversation

Copilot AI commented Jul 30, 2026

Copy link
Copy Markdown

The lint GitHub Actions job was failing because black --check . reported formatting drift. This PR brings the flagged Python files back into compliance with the repository’s Black configuration.

  • Formatting-only updates in affected modules

    • Applied Black formatting to:
      • config/settings.py
      • tools/repo_parser.py
      • tools/test_selector.py
      • tools/test_executor.py
  • No behavioral changes

    • Changes are limited to style normalization (quotes, wrapping, spacing, newline consistency), with no functional logic changes.
  • Representative diff pattern

    # before
    repo_name = repo_url.rstrip('.git').split('/')[-1]
    
    # after
    repo_name = repo_url.rstrip(".git").split("/")[-1]

Copilot AI changed the title [WIP] Fix failing GitHub Actions job lint Fix lint workflow failure by applying Black formatting updates Jul 30, 2026
Copilot AI requested a review from safiullah-24 July 30, 2026 12:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants