(args)
| 35 | return args |
| 36 | |
| 37 | def main(args): |
| 38 | if args.config_args: |
| 39 | config = json.loads(_jsonnet.evaluate_file(args.config, tla_codes={'args': args.config_args})) |
| 40 | else: |
| 41 | config = json.loads(_jsonnet.evaluate_file(args.config)) |
| 42 | |
| 43 | preprocessor = Preprocessor(config) |
| 44 | preprocessor.preprocess() |
| 45 | |
| 46 | if __name__ == '__main__': |
| 47 | args = add_parser() |
no test coverage detected