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

"""
This script generates a sky spectrum from a LowRedux IDL save file
"""

from pypeit.scripts import lowrdx_skyspec

if __name__ == '__main__':
    lowrdx_skyspec.main(lowrdx_skyspec.parse_args())

