diff --git a/main.py b/main.py index 4e3875b..014b1af 100644 --- a/main.py +++ b/main.py @@ -28,7 +28,7 @@ sublime.error_message(f"Sublime Text {ST_REQUIRED_MINIMUM_VERSION}+ is required !") else: # fmt: off - from .sshubl.commands import ( # type: ignore[import-untyped] # pylint: disable=unused-import + from .sshubl.commands import ( # type: ignore[import-not-found] # pylint: disable=unused-import SshCancelForwardCommand, SshCloseDirCommand, SshConnectCommand, @@ -41,7 +41,7 @@ SshSelectDirCommand, SshTerminalCommand, ) - from .sshubl.listeners import ( # type: ignore[import-untyped] # pylint: disable=unused-import + from .sshubl.listeners import ( # type: ignore[import-not-found] # pylint: disable=unused-import EventListener, ViewEventListener, plugin_loaded,