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

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

import pypeit.scripts.show_2dspec as show_2dspec

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