Skip to content

Commit

Permalink
apply suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbvll committed Jun 13, 2024
1 parent 275068d commit daa8b48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/py/flwr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@

from flwr.common.version import package_version as _package_version

from . import client, common, server, simulation, superexec
from . import client, common, server, simulation

__all__ = [
"client",
"common",
"server",
"simulation",
"superexec",
]

__version__ = _package_version
4 changes: 1 addition & 3 deletions src/py/flwr/superexec/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2022 Flower Labs GmbH. All Rights Reserved.
# Copyright 2024 Flower Labs GmbH. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,9 +15,7 @@
"""Flower driver service."""

from .app import run_superexec as run_superexec
from .exec_grpc import run_superexec_api_grpc as run_superexec_api_grpc

__all__ = [
"run_superexec_api_grpc",
"run_superexec",
]

0 comments on commit daa8b48

Please sign in to comment.