We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Update import statements in cx_freeze/__init__.py
1 parent ac27dba commit ae0527bCopy full SHA for ae0527b
1 file changed
ENGINES/cx_freeze/__init__.py
@@ -27,11 +27,11 @@
27
import sys
28
from typing import Optional
29
30
-from Core.engines_loader.base import CompilerEngine
31
-from Core.engines_loader.registry import register
+from engine_sdk.base import CompilerEngine
+from engine_sdk import registry
32
33
34
-@register
+@registry.register
35
class CXFreezeEngine(CompilerEngine):
36
"""
37
CX_Freeze compilation engine.
0 commit comments