Commit 28b44e98 authored by Jérome Perrin's avatar Jérome Perrin

core: fix redefined-builtin pylint violation

from 705e0beb (AppliedRule._checkExpand: add parameters to filter objects + better reporting, 2024-06-17)
parent 705e0beb
Pipeline #35617 failed with stage
in 0 seconds
......@@ -392,7 +392,7 @@ class AppliedRule(XMLObject, ExplainableMixin):
return {k: sum(v.values(), []) for k, v in deleted}, delivery_set
simulation_tool._delObject(self.getId())
def _checkExpand(self, ignore_nul_movements=False, filter=None):
def _checkExpand(self, ignore_nul_movements=False, filter=None): # pylint:disable=redefined-builtin
"""Check that expand() would not fail nor do major changes to the subobjects
Transaction is aborted after 'expand' is called.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment