mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-15 09:10:39 +00:00
18 lines
407 B
Python
18 lines
407 B
Python
|
#!/usr/bin/env python3
|
||
|
"""Global utility methods and classes."""
|
||
|
|
||
|
from distutils.util import strtobool
|
||
|
|
||
|
|
||
|
def to_bool(string):
|
||
|
return bool(strtobool(str(string)))
|
||
|
|
||
|
|
||
|
class Singleton(type):
|
||
|
_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]
|