From 8308d6ef19ec327902b83573929f6c4a5992d055 Mon Sep 17 00:00:00 2001 From: gustavoguaragna Date: Tue, 31 Dec 2024 10:43:32 -0300 Subject: [PATCH] fix(framework) Update example on docstrings for `RecordSet` (#4748) --- src/py/flwr/common/record/recordset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/py/flwr/common/record/recordset.py b/src/py/flwr/common/record/recordset.py index b2d1da4411bb..f8a85894bb80 100644 --- a/src/py/flwr/common/record/recordset.py +++ b/src/py/flwr/common/record/recordset.py @@ -151,7 +151,7 @@ class RecordSet: >>> p_record = ParametersRecord({"my_array": arr}) >>> >>> # Adding it to the record_set would look like this - >>> my_recordset.configs_records["my_config"] = c_record + >>> my_recordset.parameters_records["my_parameters"] = p_record For additional examples on how to construct each of the records types shown above, please refer to the documentation for :code:`ConfigsRecord`,