1
0

*.py: use a better shebang

This commit is contained in:
Intel A80486DX2-66 2024-07-26 14:25:21 +03:00
parent 7335bb9498
commit ee2e5c123a
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
if __name__ == "__main__": if __name__ == "__main__":
print(":: C bytebeat generator: compiler unit") print(":: C bytebeat generator: compiler unit")

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
from re import sub as re_sub from re import sub as re_sub
from glob import glob from glob import glob