Skip to content

Commit

Permalink
Fix serde
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbvll committed Jul 14, 2024
1 parent 31c0915 commit 3171cbb
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions src/py/flwr/common/serde.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,20 @@

from google.protobuf.message import Message as GrpcMessage

# pylint: disable=E0611
from flwr.proto.common_pb2 import (
BoolList,
BytesList,
DoubleList,
Sint64List,
StringList,
)
from flwr.proto.error_pb2 import Error as ProtoError
from flwr.proto.node_pb2 import Node

# pylint: disable=E0611
from flwr.proto.recordset_pb2 import Array as ProtoArray
from flwr.proto.recordset_pb2 import BoolList, BytesList
from flwr.proto.recordset_pb2 import ConfigsRecord as ProtoConfigsRecord
from flwr.proto.recordset_pb2 import ConfigsRecordValue as ProtoConfigsRecordValue
from flwr.proto.recordset_pb2 import DoubleList
from flwr.proto.recordset_pb2 import MetricsRecord as ProtoMetricsRecord
from flwr.proto.recordset_pb2 import MetricsRecordValue as ProtoMetricsRecordValue
from flwr.proto.recordset_pb2 import ParametersRecord as ProtoParametersRecord
from flwr.proto.recordset_pb2 import RecordSet as ProtoRecordSet
from flwr.proto.recordset_pb2 import Sint64List, StringList
from flwr.proto.task_pb2 import Task, TaskIns, TaskRes
from flwr.proto.transport_pb2 import (
ClientMessage,
Expand Down

0 comments on commit 3171cbb

Please sign in to comment.