#!/usr/bin/env python

"""
Launch the identify GUI tool
"""

from pypeit.scripts import launch_identify

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