"""Launcher for the PySide6 ICRA application."""
from __future__ import annotations
from .qt import run
def main() -> int:
return run()
if __name__ == "__main__":
raise SystemExit(main())