diff options
Diffstat (limited to 'gi/module.py')
-rw-r--r-- | gi/module.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gi/module.py b/gi/module.py index 8996926..8c25fd7 100644 --- a/gi/module.py +++ b/gi/module.py @@ -54,15 +54,15 @@ from ._gi import \ enum_add, \ enum_register_new_gtype_and_add, \ flags_add, \ - flags_register_new_gtype_and_add + flags_register_new_gtype_and_add, \ + _gobject from .types import \ GObjectMeta, \ StructMeta -from ._gobject._gobject import \ - GInterface +GInterface = _gobject.GInterface -from ._gobject.constants import \ +from ._constants import \ TYPE_NONE, \ TYPE_BOXED, \ TYPE_POINTER, \ |