This commit is contained in:
Emmanuel Viennet 2022-05-31 14:15:21 +02:00
parent 596a45a90e
commit ff0437d844
2 changed files with 2 additions and 2 deletions

View File

@ -147,7 +147,7 @@ def can_delete_ue(ue: UniteEns) -> bool:
et n'a pas de module rattachés
"""
# "pas un seul module de cette UE n'a de modimpl...""
return (not len(ue.modules.all())) and not any(m.modimpls.all() for m in ue.modules)
return (ue.modules.count() == 0) and not any(m.modimpls.all() for m in ue.modules)
def do_ue_delete(ue_id, delete_validations=False, force=False):

View File

@ -1,7 +1,7 @@
# -*- mode: python -*-
# -*- coding: utf-8 -*-
SCOVERSION = "9.2.23"
SCOVERSION = "9.2.24"
SCONAME = "ScoDoc"