#!/usr/bin/env python

"""
Plot a spectrum with an interactive QT GUI
"""

from pypeit.scripts import show_1dspec

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

