#!/usr/bin/env python

"""
Show the trace image in a Ginga window with edges
"""

from pypeit.scripts import chk_edges

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

