// SYSTEM PANEL //
[ROOT]
/
lib
/
python3.6
/
site-packages
/
tuned
/
plugins
/
instance
[ PARENT ]
EDIT :: factory.py
from .instance import Instance class Factory(object): def create(self, *args, **kwargs): instance = Instance(*args, **kwargs) return instance
SAVE
CANCEL