Skip to content

Commit ba712b9

Browse files
committed
Fixes Mypy failing to perform relative imports
> (maybe) related to python/mypy#17979
1 parent b81f893 commit ba712b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
sublime.error_message(f"Sublime Text {ST_REQUIRED_MINIMUM_VERSION}+ is required !")
2929
else:
3030
# fmt: off
31-
from .sshubl.commands import ( # type: ignore[import-untyped] # pylint: disable=unused-import
31+
from .sshubl.commands import ( # type: ignore[import-not-found] # pylint: disable=unused-import
3232
SshCancelForwardCommand,
3333
SshCloseDirCommand,
3434
SshConnectCommand,
@@ -41,7 +41,7 @@
4141
SshSelectDirCommand,
4242
SshTerminalCommand,
4343
)
44-
from .sshubl.listeners import ( # type: ignore[import-untyped] # pylint: disable=unused-import
44+
from .sshubl.listeners import ( # type: ignore[import-not-found] # pylint: disable=unused-import
4545
EventListener,
4646
ViewEventListener,
4747
plugin_loaded,

0 commit comments

Comments
 (0)