Skip to content

Commit

Permalink
Fix missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
chongshenng committed Aug 15, 2024
1 parent 1803bab commit 81c2a83
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/py/flwr/client/process/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,17 @@
# ==============================================================================
"""Flower ClientApp loading utils."""

from logging import DEBUG, WARN
from logging import DEBUG
from pathlib import Path
from typing import Callable, Optional

from flwr.client.client_app import ClientApp, LoadClientAppError
from flwr.common.config import get_flwr_dir, get_project_config, get_project_dir
from flwr.common.config import (
get_flwr_dir,
get_metadata_from_config,
get_project_config,
get_project_dir,
)
from flwr.common.logger import log
from flwr.common.object_ref import load_app, validate

Expand Down

0 comments on commit 81c2a83

Please sign in to comment.