#!/usr/bin/env python3 """Backwards-compatible wrapper for bin/audiodeleto.py.""" from __future__ import annotations import runpy from pathlib import Path runpy.run_path(str(Path(__file__).resolve().parent / "bin" / "audiodeleto.py"), run_name="__main__")