diff --git a/commands2/__init__.py b/commands2/__init__.py index 2b64950..1823bf1 100644 --- a/commands2/__init__.py +++ b/commands2/__init__.py @@ -85,10 +85,4 @@ def __getattr__(attr): ) return Subsystem - if attr == "CommandBase": - import warnings - - warnings.warn("CommandBase is deprecated", DeprecationWarning, stacklevel=2) - return Command - raise AttributeError(f"module {__name__!r} has no attribute {attr!r}")