Skip to content
This repository was archived by the owner on Jun 14, 2026. It is now read-only.

Commit edbd409

Browse files
committed
chore: update black 24.1.1 → 26.1.0 and reformat codebase
Update pre-commit black pin to match installed version, eliminating version drift that caused false CI failures. Reformats 213 files with black 26 style (mainly line joining where lines fit).
1 parent 5ee26e8 commit edbd409

213 files changed

Lines changed: 787 additions & 673 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ repos:
4343

4444
# Python code formatting
4545
- repo: https://github.com/psf/black
46-
rev: 24.1.1
46+
rev: 26.1.0
4747
hooks:
4848
- id: black
4949
name: Format Python code with Black

packages/cli/src/aurora_cli/agent_discovery/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
from aurora_cli.agent_discovery.parser import AgentParser
4141
from aurora_cli.agent_discovery.scanner import AgentScanner, get_default_discovery_paths
4242

43-
4443
__all__ = [
4544
# Scanner
4645
"AgentScanner",

packages/cli/src/aurora_cli/agent_discovery/manifest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
from aurora_cli.agent_discovery.parser import AgentParser
2525
from aurora_cli.agent_discovery.scanner import AgentScanner
2626

27-
2827
if TYPE_CHECKING:
2928
from aurora_cli.config import Config
3029

packages/cli/src/aurora_cli/agent_discovery/parser.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
from aurora_cli.agent_discovery.models import AgentInfo
2121

22-
2322
logger = logging.getLogger(__name__)
2423

2524

@@ -184,4 +183,3 @@ def parse_file(self, path: Path) -> AgentInfo | None:
184183
error_msg = _format_validation_errors(e.errors())
185184
logger.warning("Validation failed for %s - %s", path, error_msg)
186185
return None
187-

packages/cli/src/aurora_cli/agent_discovery/scanner.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from pathlib import Path
1717
from typing import Iterator
1818

19-
2019
logger = logging.getLogger(__name__)
2120

2221

packages/cli/src/aurora_cli/commands/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
from .plan import plan_group
1010
from .spawn import spawn_command
1111

12-
1312
__all__ = [
1413
"goals_command",
1514
"init_command",

packages/cli/src/aurora_cli/commands/agents.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
from aurora_cli.config import Config
3939
from aurora_cli.errors import handle_errors
4040

41-
4241
if TYPE_CHECKING:
4342
pass
4443

packages/cli/src/aurora_cli/commands/budget.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
from aurora_cli.errors import handle_errors
1515
from aurora_core.budget.tracker import CostTracker
1616

17-
1817
console = Console()
1918

2019

packages/cli/src/aurora_cli/commands/doctor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
ToolIntegrationChecks,
2121
)
2222

23-
2423
__all__ = ["doctor_command"]
2524

2625
logger = logging.getLogger(__name__)

packages/cli/src/aurora_cli/commands/friction.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
import click
1212
from rich.console import Console
1313

14-
1514
console = Console()
1615

1716

0 commit comments

Comments
 (0)