remove unused index argumnet in restart method to comply with latest develop branch

This commit is contained in:
church89 2024-03-20 10:39:52 +01:00
parent 49191d4da3
commit ee13d16d7d

View file

@ -848,7 +848,7 @@ class Integrator(ABC):
root = None
n, res = self._get_bos_data_from_operator(i, source_rate, n)
else:
n, res = self._get_bos_data_from_restart(i, source_rate, n)
n, res = self._get_bos_data_from_restart(source_rate, n)
if self._reactivity_control:
root = self.operator.prev_res[-1].reac_cont
else: