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

"""
Inspect the desispec dark output.
"""

import sys
import desispec.scripts.inspect_dark as inspect_dark

if __name__ == '__main__':
    args = inspect_dark.parse()
    sys.exit(inspect_dark.main(args))
