6 lines
148 B
Python
6 lines
148 B
Python
from .instance import Instance
|
|
|
|
class Factory(object):
|
|
def create(self, *args, **kwargs):
|
|
instance = Instance(*args, **kwargs)
|
|
return instance
|