#!/usr/bin/env python3
# PYTHON_ARGCOMPLETE_OK
# -*- coding: utf-8 -*-
"""
Top-level executable wrapper for the scheduler-ta CLI.

We disable invalid-name to allow dashed names like 'scheduler-ta'.
"""

# pylint: disable=invalid-name

import os
import sys

sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "src")))

# pylint: disable=wrong-import-position
from scheduler_ta.main import main  # noqa: E402

if __name__ == "__main__":
    main()
