#!/usr/bin/env python3

"""Launcher for clangd checker tool."""

import os
import sys

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

# isort:start

from nuitka.tools.quality.clangd.__main__ import main

sys.exit(main())
