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

"""
This script opens the interactive object finding/tracing
"""

from pypeit.scripts import find_objects

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


