Move singleton to common utils
Signed-off-by: Katarzyna Treder <katarzyna.treder@h-partners.com>
This commit is contained in:
0
test_utils/common/__init__.py
Normal file
0
test_utils/common/__init__.py
Normal file
16
test_utils/common/singleton.py
Normal file
16
test_utils/common/singleton.py
Normal file
@@ -0,0 +1,16 @@
|
||||
#
|
||||
# Copyright(c) 2019-2021 Intel Corporation
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
#
|
||||
|
||||
|
||||
class Singleton(type):
|
||||
"""
|
||||
Singleton class
|
||||
"""
|
||||
_instances = {}
|
||||
|
||||
def __call__(cls, *args, **kwargs):
|
||||
if cls not in cls._instances:
|
||||
cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs)
|
||||
return cls._instances[cls]
|
Reference in New Issue
Block a user