pic_scanner.gui.models.element_bases.metas
Classes
Metaclass for classes that should build themselves upon instantiation when the auto_build |
|
Metaclass for classes that should build and run themselves upon instantiation when the auto_build |
Module Contents
- class pic_scanner.gui.models.element_bases.metas.AutoBuildMeta
Bases:
abc.ABCMetaMetaclass for classes that should build themselves upon instantiation when the auto_build attribute is True.
This metaclass overrides the __call__ method to build the instance if the auto_build attribute is True.
- class pic_scanner.gui.models.element_bases.metas.AutoBuildRunMeta
Bases:
abc.ABCMetaMetaclass for classes that should build and run themselves upon instantiation when the auto_build and auto_run attributes are True.
This metaclass overrides the __call__ method to build and run the instance if the auto_build and auto_run attributes are True.