diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-06-26 20:45:11 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-06-27 10:59:30 +0200 |
commit | 66f6d4951bc7cd801757feca3b4a403ebedb2d64 (patch) | |
tree | 09ffe42906a9a6492a102efd0240aaaf93bd8943 /ishtar_common/wizards.py | |
parent | 42b0ad69ed32fb72787e3bcdd0400ec7e2eb9156 (diff) | |
download | Ishtar-66f6d4951bc7cd801757feca3b4a403ebedb2d64.tar.bz2 Ishtar-66f6d4951bc7cd801757feca3b4a403ebedb2d64.zip |
⚡️ imports: performance optimisations
Diffstat (limited to 'ishtar_common/wizards.py')
-rw-r--r-- | ishtar_common/wizards.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index 8308deed3..1d5e95647 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -776,6 +776,8 @@ class Wizard(IshtarWizard): c_item = m.related.model(**other_objs[dependant_item]) setattr(obj, dependant_item, c_item) obj.save() + # test framework do not reinit well this settings + obj._no_down_model_update = False obj.save() else: adds = {} |