mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-24 19:19:56 +00:00
11 lines
261 B
Python
11 lines
261 B
Python
class FactoryClassMock(object):
|
|
|
|
_instances = {}
|
|
|
|
def __new__(cls, obj):
|
|
if obj not in cls._instances:
|
|
cls._instances[obj] = object.__new__(cls)
|
|
return cls._instances[obj]
|
|
|
|
def __init__(self, obj):
|
|
self.obj = obj
|