File tree Expand file tree Collapse file tree 5 files changed +5
-4
lines changed
tests/fixtures/pluginsystem
plugins/tmuxp_test_plugin_fail/tmuxp_test_plugin_fail Expand file tree Collapse file tree 5 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force
2525
2626 Improve styling via pydocstyle.
2727- ` config_reader ` : Move to ` tmuxp._internal ` (#897 )
28+ - ` _types ` : Move to ` tmuxp._internal ` (#900 )
2829
2930## tmuxp 1.33.0 (2023-12-21)
3031
Original file line number Diff line number Diff line change 66>>> import typing as t
77
88>>> if t.TYPE_CHECKING:
9- ... from tmuxp._types import PluginConfigSchema
9+ ... from tmuxp._internal.types import PluginConfigSchema
1010...
1111"""
1212import typing as t
Original file line number Diff line number Diff line change 3232 from libtmux .window import Window
3333 from typing_extensions import TypedDict , TypeGuard , Unpack
3434
35- from ._types import PluginConfigSchema
35+ from ._internal . types import PluginConfigSchema
3636
3737 class VersionConstraints (TypedDict ):
3838 """Version constraints mapping for a tmuxp plugin."""
Original file line number Diff line number Diff line change 66if t .TYPE_CHECKING :
77 from typing_extensions import Unpack
88
9- from tmuxp ._types import PluginConfigSchema
9+ from tmuxp ._internal . types import PluginConfigSchema
1010
1111 from ._types import PluginTestConfigSchema
1212
Original file line number Diff line number Diff line change 44from tmuxp .plugin import TmuxpPlugin
55
66if t .TYPE_CHECKING :
7- from tmuxp ._types import PluginConfigSchema
7+ from tmuxp ._internal . types import PluginConfigSchema
88
99
1010class PluginFailVersion (TmuxpPlugin ):
You can’t perform that action at this time.
0 commit comments