MCPcopy Create free account
hub / github.com/TPCD/DCCL / str2bool

Function str2bool

project_utils/cluster_utils.py:200–206  ·  view source on GitHub ↗
(v)

Source from the content-addressed store, hash-verified

198
199
200def str2bool(v):
201 if v.lower() in ('yes', 'true', 't', 'y', '1'):
202 return True
203 elif v.lower() in ('no', 'false', 'f', 'n', '0'):
204 return False
205 else:
206 raise argparse.ArgumentTypeError('Boolean value expected.')

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected