iro/model/__init__.py
changeset 312 42fd5075a5d1
parent 294 0e75bd39767d
--- a/iro/model/__init__.py	Wed Jun 21 00:52:38 2023 +0200
+++ b/iro/model/__init__.py	Tue Apr 15 01:19:47 2025 +0200
@@ -24,11 +24,11 @@
 before using the model, you have to use, you have to set the Engine with :func:`dbdefer.setEngine` and set the Threadpool with :func:`dbdefer.setPool` (see :func:`iro.main.runReactor` for initalizing this module).
 """
 
-import schema
-import user
-import utils
-import job
-import offer
+from . import schema
+from . import user
+from . import utils
+from . import job
+from . import offer
 
-from dbdefer import setEngine
-from pool import setPool
+from .dbdefer import setEngine
+from .pool import setPool