Skip to content

Commit

Permalink
Merge pull request #301 from mukirikm/bugfix/issue#165/RuntimeError
Browse files Browse the repository at this point in the history
Fix RuntimeError (issue #165)
  • Loading branch information
raphenya authored Jan 29, 2025
2 parents 0d00399 + 2fccd76 commit 7a3aad4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion rgi
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#!/usr/bin/env python3
from app.MainBase import MainBase

MainBase()
def main():
MainBase()

if __name__ == "__main__":
main()

0 comments on commit 7a3aad4

Please sign in to comment.