Skip to content

Commit

Permalink
Merge pull request #7 from Deleh/fix/shebang
Browse files Browse the repository at this point in the history
Adjust Python Shebang
  • Loading branch information
fmessmer authored Apr 23, 2024
2 parents f15487a + 16050ad commit a479430
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion robmuxinator/robmuxinator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python3
import argparse
import concurrent.futures
import logging
Expand Down
6 changes: 4 additions & 2 deletions run.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/python3
#!/usr/bin/env python

from robmuxinator.robmuxinator import main
if __name__ == '__main__':

if __name__ == "__main__":
main()

0 comments on commit a479430

Please sign in to comment.