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
25 lines
465 B
Python
25 lines
465 B
Python
from typing import Optional
|
|
|
|
from scripts.utils.logger.logger import LoggerFactory, Logger
|
|
|
|
|
|
class DummyLoggerFactory(LoggerFactory):
|
|
def create_logger(self, name: Optional[str] = None) -> 'DummyLogger':
|
|
return DummyLogger()
|
|
|
|
|
|
class DummyLogger(Logger):
|
|
def update(self, msg):
|
|
pass
|
|
|
|
def success(self, msg):
|
|
pass
|
|
|
|
def error(self, msg):
|
|
pass
|
|
|
|
def warn(self, msg):
|
|
pass
|
|
|
|
def info(self, msg):
|
|
pass |