From 98201e27dd36c6bd0a5945fcc10a70950eef78f4 Mon Sep 17 00:00:00 2001 From: PSala Date: Tue, 18 Jul 2023 15:22:26 +0200 Subject: [PATCH] Add import service, pre load erp monkeypatches --- destral/openerp.py | 1 + 1 file changed, 1 insertion(+) diff --git a/destral/openerp.py b/destral/openerp.py index 14d0a3a..2f3bf60 100644 --- a/destral/openerp.py +++ b/destral/openerp.py @@ -29,6 +29,7 @@ def __init__(self, **kwargs): :param \**kwargs: keyword arguments passed to the config """ config = config_from_environment('OPENERP', [], **kwargs) + import service import netsvc import tools update_config(tools.config, **config)