You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Probably something like this is best, as it's strict but reasonable:
def parse_bool(val):
if val in [True, 1, "True", "true"]:
return True
elif val in [False, 0, "False", "false"]:
return False
else:
raise ValueError("Not parsable as a boolean: %r" % val)
http://stackoverflow.com/questions/715417/converting-from-a-string-to-boolean-in-python
Probably something like this is best, as it's strict but reasonable: