toshas's picture
initial commit
a45988a
raw
history blame
354 Bytes
# Author: Bingxin Ke
# Last modified: 2024-11-26
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.")