From 9aafcd82adb0b43d7cbd63ddc0b6645c538e232d Mon Sep 17 00:00:00 2001 From: jeandut Date: Fri, 19 Jan 2024 11:02:39 +0100 Subject: [PATCH] typo: fix typo --- substrafl/algorithms/pytorch/torch_scaffold_algo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrafl/algorithms/pytorch/torch_scaffold_algo.py b/substrafl/algorithms/pytorch/torch_scaffold_algo.py index 92e49838..9c3695f2 100644 --- a/substrafl/algorithms/pytorch/torch_scaffold_algo.py +++ b/substrafl/algorithms/pytorch/torch_scaffold_algo.py @@ -501,7 +501,7 @@ def _update_from_checkpoint(self, checkpoint: dict) -> None: Returns: dict: checkpoint """ - checkpoint = super()._update_from_checkpoint(checkpoint=checkpoint) + super()._update_from_checkpoint(checkpoint=checkpoint) self._client_control_variate = checkpoint.pop("client_control_variate") return