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

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

import pypeit.scripts.lowrdx_skyspec as lowrdx_skyspec

if __name__ == '__main__':
    args = lowrdx_skyspec.parser()
    lowrdx_skyspec.main(args)

