13 lines
364 B
Python
13 lines
364 B
Python
"""Template module model for a NQRduck module."""
|
|
|
|
from nqrduck.module.module_model import ModuleModel
|
|
|
|
# If the module is called "duck" the class would be called "DuckModel"
|
|
|
|
|
|
class ModuleModel(ModuleModel):
|
|
"""Template class for a NQRduck module model."""
|
|
|
|
def __init__(self, module):
|
|
"""Initialize the model."""
|
|
super().__init__(module)
|