little-boxes/little_boxes/__init__.py

13 wiersze
271 B
Python
Czysty Zwykły widok Historia

2018-06-11 20:50:02 +00:00
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')