microblog.pub/utils/__init__.py
2018-06-17 19:21:59 +02:00

13 lines
271 B
Python

import logging
logger = logging.getLogger(__name__)
def strtobool(s: str) -> bool:
if s in ["y", "yes", "true", "on", "1"]:
return True
if s in ["n", "no", "false", "off", "0"]:
return False
raise ValueError(f"cannot convert {s} to bool")