This commit adds @override decorators to approximately 300 methods across 76 files that inherit from base classes such as AbstractCmd, FileContext, ExecContext, Distro, SSHClient, and others. The decorator ensures the type checker can verify that overridden methods have compatible signatures and prevents accidental shadowing of inherited methods without intent. Files modified include command classes, library modules, distro implementations, and SSH client implementations. Assisted-by: unsloth/Qwen3.6-35B-A3B-GGUF:IQ4_NL with pi.dev v Signed-off-by: Jan Lindemann <jan@janware.com>
20 lines
508 B
Python
20 lines
508 B
Python
from __future__ import annotations
|
|
|
|
from typing import override, TYPE_CHECKING
|
|
|
|
from ....CmdBase import CmdBase as Base
|
|
from ..CmdCheck import CmdCheck as Parent
|
|
|
|
if TYPE_CHECKING:
|
|
from argparse import ArgumentParser
|
|
|
|
class Cmd(Base): # export
|
|
|
|
def __init__(self, parent: Parent, name: str, help: str) -> None:
|
|
super().__init__(parent, name, help)
|
|
|
|
@override
|
|
def add_arguments(self, parser: ArgumentParser) -> None:
|
|
super().add_arguments(parser)
|
|
|
|
__all__ = ['Parent', 'Cmd']
|