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

"""
This script generates an ArcID plot from a Master WaveSoln file
"""

from pypeit.scripts import arcid_plot

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

