Add isort configuration (profile=black, line_length=100) to pyproject.toml, add isort pre-commit hook, and auto-sort imports across all Python source files. 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 .board import BoardCommands
|
|
from .component import ComponentCommands
|
|
from .design_rules import DesignRuleCommands
|
|
from .export import ExportCommands
|
|
from .project import ProjectCommands
|
|
from .routing import RoutingCommands
|
|
|
|
__all__ = [
|
|
"ProjectCommands",
|
|
"BoardCommands",
|
|
"ComponentCommands",
|
|
"RoutingCommands",
|
|
"DesignRuleCommands",
|
|
"ExportCommands",
|
|
]
|