aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2025-08-04 10:58:40 +0200
committerThomas Voss <mail@thomasvoss.com> 2025-08-04 10:58:40 +0200
commit3e27bb55ff6118c442bfbc4305acb7ef9c364a20 (patch)
tree506dbb00d665529a9452dd2ed984688e42c7a63e
parent4ba4a7c2fc0263c95d24a6bf40e42e4a39ae244e (diff)
Use /usr/bin/env
-rwxr-xr-xaux/enabled-languages4
-rwxr-xr-xsrc/i18n/gen.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/aux/enabled-languages b/aux/enabled-languages
index df03c40..f4aa5b5 100755
--- a/aux/enabled-languages
+++ b/aux/enabled-languages
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
import os
import sys
@@ -8,4 +8,4 @@ sys.path.append("..")
import src.i18n.gen
-print(" ".join(x.bcp for x in src.i18n.gen.LOCALES if x.enabledp)) \ No newline at end of file
+print(" ".join(x.bcp for x in src.i18n.gen.LOCALES if x.enabledp))
diff --git a/src/i18n/gen.py b/src/i18n/gen.py
index 9404644..9271cc0 100755
--- a/src/i18n/gen.py
+++ b/src/i18n/gen.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
import concurrent.futures
import dataclasses
@@ -169,4 +169,4 @@ def val_to_go(x: Any) -> str:
if __name__ == "__main__":
os.chdir(os.path.dirname(sys.argv[0]))
- sys.exit(main()) \ No newline at end of file
+ sys.exit(main())