python-tty 0.1.5__tar.gz → 0.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_tty-0.1.5/src/python_tty.egg-info → python_tty-0.1.6}/PKG-INFO +1 -1
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/mixins.py +1 -1
- {python_tty-0.1.5 → python_tty-0.1.6/src/python_tty.egg-info}/PKG-INFO +1 -1
- {python_tty-0.1.5 → python_tty-0.1.6}/.github/workflows/python-publish.yml +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/.gitignore +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/LICENSE +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/MANIFEST.in +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/NOTICE +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/README.md +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/README_zh.md +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/chat_room/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/commands/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/commands/root_commands.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/consoles/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/consoles/root.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/core/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/core/file_manager.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/exceptions/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/exceptions/console_exception.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/main.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/setup.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/utils/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/demos/file_manager/utils/table.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/docs/LOG.md +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/docs/context.md +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/pyproject.toml +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/requirements.txt +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/setup.cfg +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/setup.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/audit/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/audit/sink.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/audit/ui_logger.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/core.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/decorators.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/examples/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/examples/root_commands.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/examples/sub_commands.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/general.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/commands/registry.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/config/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/config/config.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/console_factory.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/core.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/decorators.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/examples/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/examples/root_console.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/examples/sub_console.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/loader.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/manager.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/consoles/registry.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/exceptions/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/exceptions/console_exception.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/executor/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/executor/executor.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/executor/models.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/frontends/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/frontends/rpc/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/frontends/web/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/meta/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/runtime/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/runtime/events.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/runtime/provider.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/runtime/router.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/utils/__init__.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/utils/table.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty/utils/tokenize.py +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty.egg-info/SOURCES.txt +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty.egg-info/dependency_links.txt +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty.egg-info/requires.txt +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/src/python_tty.egg-info/top_level.txt +0 -0
- {python_tty-0.1.5 → python_tty-0.1.6}/tests/__init__.py +0 -0
|
@@ -34,7 +34,7 @@ class HelpMixin(CommandMixin):
|
|
|
34
34
|
for cls in self.__class__.mro():
|
|
35
35
|
if cls is CommandMixin:
|
|
36
36
|
continue
|
|
37
|
-
if issubclass(cls, CommandMixin):
|
|
37
|
+
if issubclass(cls, CommandMixin) and not issubclass(cls, BaseCommands):
|
|
38
38
|
base_commands_funcs.extend([member[1] for member in inspect.getmembers(cls, inspect.isfunction)])
|
|
39
39
|
for name, func in self.command_funcs.items():
|
|
40
40
|
row = [name, func.info.func_description]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|