mirror of
https://github.com/serengil/deepface.git
synced 2025-06-04 02:20:06 +00:00
9 lines
216 B
Python
9 lines
216 B
Python
from deepface.commons.logger import Logger
|
|
|
|
logger = Logger()
|
|
|
|
|
|
def test_singleton_same_object():
|
|
assert Logger() == Logger()
|
|
logger.info("✅ id's of instances of \"singletoned\" class Logger are the same")
|