Add [tool.black] config to pyproject.toml and Black hook to .pre-commit-config.yaml (rev 26.3.1), then auto-format all Python source and test files with line-length=100, target-version=py310. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
449 B
Python
20 lines
449 B
Python
"""
|
|
KiCAD command implementations package
|
|
"""
|
|
|
|
from .project import ProjectCommands
|
|
from .board import BoardCommands
|
|
from .component import ComponentCommands
|
|
from .routing import RoutingCommands
|
|
from .design_rules import DesignRuleCommands
|
|
from .export import ExportCommands
|
|
|
|
__all__ = [
|
|
"ProjectCommands",
|
|
"BoardCommands",
|
|
"ComponentCommands",
|
|
"RoutingCommands",
|
|
"DesignRuleCommands",
|
|
"ExportCommands",
|
|
]
|