Xavier Claessens cedeef3cb1 pre-commit: Workaround broken shebang on Windows
Using "python" in the shebang breaks those scripts when ran outside of
pre-commit venv.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9080>
2025-05-27 12:00:28 +00:00

9 lines
133 B
Python
Executable File

#!/usr/bin/env python3
from sys import argv
from gst_indent_common import indent
if __name__ == '__main__':
indent(*argv[1:])