| Conditions | 1 | 
| Total Lines | 8 | 
| Code Lines | 3 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | """This module is responsible to define an interface to construct Command objects (instances of the Command class).""" | ||
| 11 | @abstractmethod | ||
| 12 | def construct(self, *args, **kwargs) -> CommandInterface: | ||
| 13 | """Construct a new Command object (new class instance) that can be executed. | ||
| 14 | |||
| 15 | Returns: | ||
| 16 | Command: the command object (instance) | ||
| 17 | """ | ||
| 18 | raise NotImplementedError | ||
| 19 | |||
| 37 |