Whisper-WebUI / modules /utils /cli_manager.py
jhj0517
Refactor bool to `str2bool` in CLI
f79aae9
raw
history blame
304 Bytes
import argparse
def str2bool(v):
if isinstance(v, bool):
return v
if v.lower() in ('yes', 'true', 't', 'y', '1'):
return True
elif v.lower() in ('no', 'false', 'f', 'n', '0'):
return False
else:
raise argparse.ArgumentTypeError('Boolean value expected.')