Skip to content

Commit 385da9f

Browse files
committed
refactor(cli): Move to directory
1 parent 745f6f1 commit 385da9f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tmuxp/cli.py renamed to tmuxp/cli/__init__.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
from libtmux.exc import TmuxCommandNotFound
2727
from libtmux.server import Server
2828

29-
from . import __file__ as tmuxp_path, config, exc, log, util
30-
from .__about__ import __version__
31-
from ._compat import PY3, PYMINOR
32-
from .workspacebuilder import WorkspaceBuilder, freeze
29+
from .. import __file__ as tmuxp_path, config, exc, log, util
30+
from ..__about__ import __version__
31+
from .._compat import PY3, PYMINOR
32+
from ..workspacebuilder import WorkspaceBuilder, freeze
3333

3434
logger = logging.getLogger(__name__)
3535

@@ -889,7 +889,7 @@ def command_shell(
889889
tmuxp_breakpoint()
890890
return
891891
else:
892-
from .shell import launch
892+
from ..shell import launch
893893

894894
launch(
895895
shell=shell,

0 commit comments

Comments
 (0)