mirror of
https://github.com/thegeeklab/docker-autotag.git
synced 2024-11-21 16:00:38 +00:00
fix: remove deprecated distutils (#279)
This commit is contained in:
parent
42d61889e8
commit
e867939a71
@ -1,7 +1,6 @@
|
||||
"""Global utility methods and classes."""
|
||||
|
||||
import os
|
||||
from distutils.util import strtobool
|
||||
|
||||
|
||||
def normalize_path(path):
|
||||
@ -11,6 +10,30 @@ def normalize_path(path):
|
||||
return None
|
||||
|
||||
|
||||
def strtobool(value):
|
||||
"""Convert a string representation of truth to true or false."""
|
||||
|
||||
_map = {
|
||||
"y": True,
|
||||
"yes": True,
|
||||
"t": True,
|
||||
"true": True,
|
||||
"on": True,
|
||||
"1": True,
|
||||
"n": False,
|
||||
"no": False,
|
||||
"f": False,
|
||||
"false": False,
|
||||
"off": False,
|
||||
"0": False
|
||||
}
|
||||
|
||||
try:
|
||||
return _map[str(value).lower()]
|
||||
except KeyError as err:
|
||||
raise ValueError(f'"{value}" is not a valid bool value') from err
|
||||
|
||||
|
||||
def to_bool(string):
|
||||
return bool(strtobool(str(string)))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user