#!python
#
# See top-level LICENSE.rst file for Copyright information
#
# -*- coding: utf-8 -*-

"""
This script runs bootcalib scripts for one spectrograph given a flat, arc combination
"""

import sys
import desispec.scripts.bootcalib as desiboot

if __name__ == '__main__':
    args = desiboot.parse()
    sys.exit(desiboot.main(args))
