(s)
| 4 | |
| 5 | |
| 6 | def boolean_string(s): |
| 7 | if s.upper() not in {'FALSE', 'TRUE'}: |
| 8 | raise ValueError('Not a valid boolean string') |
| 9 | return s.upper() == 'TRUE' |
| 10 | |
| 11 | |
| 12 | parser = argparse.ArgumentParser(description='Train') |
nothing calls this directly
no outgoing calls
no test coverage detected