()
| 30 | |
| 31 | |
| 32 | def main(): |
| 33 | parser = argparse.ArgumentParser() |
| 34 | parser.add_argument( |
| 35 | "-o", |
| 36 | "--outfile", |
| 37 | type=str, |
| 38 | help="Path to the output directory" |
| 39 | ) |
| 40 | args = parser.parse_args() |
| 41 | |
| 42 | outfile = os.path.join(os.getcwd(), args.outfile) |
| 43 | write_code(outfile) |
| 44 | |
| 45 | |
| 46 | if __name__ == '__main__': |
no test coverage detected
searching dependent graphs…