Skip to content

Commit 2105bcb

Browse files
committed
Correct absolute import into a relative one in src/godot/hazmat/extension_class.pxd
1 parent e21f5bd commit 2105bcb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/godot/hazmat/extension_class.pxd

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ from cpython.ref cimport Py_INCREF, Py_DECREF
33
from libc.string cimport strcmp
44
from libc.stdlib cimport malloc, free
55

6-
from godot.hazmat.gdextension_interface cimport *
7-
from godot.hazmat.gdapi cimport *
8-
from godot.hazmat cimport gdptrs
6+
from .gdextension_interface cimport *
7+
from .gdapi cimport *
8+
from . cimport gdptrs
9+
910

1011
@cython.final
1112
cdef class ExtensionClassSpec:

0 commit comments

Comments
 (0)