#!/usr/bin/env python
# coding: utf-8

## Import some helper functions, you can see their definitions by uncomenting the bash shell command
from desispec.scripts.reformat_proctables import get_parser, reformat_processing_tables




if __name__ == '__main__':
    parser = get_parser()
    args = parser.parse_args()

    reformat_processing_tables(**args.__dict__)