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

"""
This script computes the Charge Transfer Efficiency correction for a night using LED data.
"""

import sys
import desispec.scripts.fit_cte_night as fit_cte_night


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