Skip to content

Commit

Permalink
Fix pyinstaller
Browse files Browse the repository at this point in the history
  • Loading branch information
justin025 committed Dec 20, 2024
1 parent d9e5b78 commit 28a783d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/onthespot/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from . import main

if __name__ == '__main__':
main()
2 changes: 1 addition & 1 deletion src/portable.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/python3
from onthespot.__init__ import main
from onthespot import main

if __name__ == '__main__':
main()

0 comments on commit 28a783d

Please sign in to comment.