Skip to content

Commit

Permalink
Merge pull request #10 from javrasya/fix-pyinstaller
Browse files Browse the repository at this point in the history
Try to fix pyinstaller problem.
  • Loading branch information
Aermoss authored Jan 25, 2025
2 parents 973e6ec + 9d924f1 commit dcd14d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdl3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def SDL_GET_OR_GENERATE_DOCS() -> bytes:

return SDL_GENERATE_DOCS().encode("utf-8")

from .SDL import *
from sdl3.SDL import *

if not __initialized__:
if __doc_generator__:
Expand All @@ -322,4 +322,4 @@ def SDL_GET_OR_GENERATE_DOCS() -> bytes:

else:
if os.path.exists(__doc_file__):
os.remove(__doc_file__)
os.remove(__doc_file__)

0 comments on commit dcd14d2

Please sign in to comment.