Skip to content

Commit

Permalink
🐛 fix assets
Browse files Browse the repository at this point in the history
  • Loading branch information
zty012 committed Aug 29, 2024
1 parent 4e88a3c commit c7e55d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/project_graph/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from project_graph.tools.file_tools import read_file

try:
pass # type: ignore
from project_graph.assets import assets # type: ignore # noqa: F401
except ImportError:
from PyQt5 import pyrcc_main

Expand All @@ -46,6 +46,8 @@
print("Failed to compile assets.rcc")
exit(1)

from project_graph.assets import assets # type: ignore # noqa: F401

import os

from project_graph.camera import Camera
Expand Down

0 comments on commit c7e55d5

Please sign in to comment.