#!/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_exptables import get_parser, reformat_exposure_tables


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

    reformat_exposure_tables(**args.__dict__)