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

"""
This script pushes a FITS file to ginga
"""

from pypeit.scripts import show_2dspec

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


