Coverage for mfplugin/extra_daemon.py: 67%

6 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-11-13 15:57 +0000

1from mfplugin.command import COMMAND_SCHEMA, Command 

2 

3EXTRA_DAEMON_SCHEMA = { 

4 **COMMAND_SCHEMA 

5} 

6 

7 

8class ExtraDaemon(Command): 

9 

10 def __init__(self, plugin_home, plugin_name, name, doc_fragment, 

11 custom_fragment): 

12 Command.__init__(self, plugin_home, plugin_name, name, doc_fragment, 

13 custom_fragment) 

14 self._type = "extra"