Skip to content

Commit

Permalink
Fixes Mypy failing to perform relative imports
Browse files Browse the repository at this point in the history
> (maybe) related to python/mypy#17979
  • Loading branch information
HorlogeSkynet committed Dec 23, 2024
1 parent 058e657 commit c3e01df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit c3e01df

Please sign in to comment.