mirror of
https://github.com/imarkoff/Marble-shell-theme.git
synced 2025-09-18 01:07:55 -07:00
- Fully covered gresource orchestrator and it helpers with tests - Use abstract command runner INSTEAD OF SUBPROCESS in gresources - Replaced some subprocesses by builtin functions
6 lines
191 B
Python
6 lines
191 B
Python
from scripts.utils.command_runner.command_runner import CommandRunner
|
|
|
|
|
|
class DummyRunner(CommandRunner):
|
|
def run(self, command: list[str], **kwargs) -> str:
|
|
return "Dummy output" |