made cli tools executable; added #!

This commit is contained in:
NichtJens
2024-05-15 17:07:54 +02:00
parent d65b6c66e2
commit b2e542f9f1
3 changed files with 5 additions and 0 deletions
Regular → Executable
View File
Regular → Executable
View File
+5
View File
@@ -1,3 +1,5 @@
#!/usr/bin/env python
from argparse import ArgumentParser
from .BinaryBufferReader import BinaryBufferReader
@@ -60,3 +62,6 @@ def main():
if __name__ == "__main__":
main()