#!/usr/bin/env python3
#     Copyright 2025, QutaYba, nasr2python@gmail.com find license text at end of file


""" Launcher for autoformat tool.

"""

import os
import sys

# Unchanged, running from checkout, use the parent directory, the qutayba
# package ought to be there.
sys.path.insert(0, os.path.normpath(os.path.join(os.path.dirname(__file__), "..")))

# isort:start

from qutayba.tools.quality.auto_format.__main__ import main

main()


