Commit 76cd0a27 authored by Vincent Pelletier's avatar Vincent Pelletier

Pass parameter by name - it makes them more future-robust.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@15864 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c969c2b3
......@@ -200,7 +200,7 @@ class SimulationTool(BaseTool):
def _getSimulationStateQuery(self, **kw):
simulation_state_dict = self._getSimulationStateDict(**kw)
return self._buildSimulationStateQuery(simulation_state_dict)
return self._buildSimulationStateQuery(simulation_state_dict=simulation_state_dict)
def _buildSimulationStateQuery(self, simulation_state_dict):
input_simulation_state = simulation_state_dict.get(
......
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