Skip to content

Commit

Permalink
simplified
Browse files Browse the repository at this point in the history
  • Loading branch information
jafermarq committed Feb 25, 2025
1 parent ab63ecc commit 58624dd
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/py/flwr/server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,6 @@
def add_ee_args_superlink(parser: argparse.ArgumentParser) -> None:
"""Add EE-specific arguments to the parser."""

# pylint: disable=unused-argument
def get_dashboard_server(
address: str,
state_factory: LinkStateFactory,
) -> grpc.Server:
"""Add Dashboard gRPC server."""

def get_exec_auth_plugins() -> dict[str, type[ExecAuthPlugin]]:
"""Return all Exec API authentication plugins."""
raise NotImplementedError("No authentication plugins are currently supported.")
Expand Down Expand Up @@ -448,6 +441,7 @@ def run_superlink() -> None:
dashboard_server = get_dashboard_server(
address=dashboard_address_str,
state_factory=state_factory,
certificates=None,
)

grpc_servers.append(dashboard_server)
Expand Down

0 comments on commit 58624dd

Please sign in to comment.