Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wrede committed Jan 29, 2025
1 parent 34d82c3 commit aab9db1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fedn/network/clients/fedn_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import time
import uuid
from io import BytesIO
from typing import Any, Optional, Tuple
from typing import Any, Optional, Tuple, Union

import requests

Expand Down Expand Up @@ -426,8 +426,8 @@ def send_status(
self,
msg: str,
log_level: fedn.LogLevel = fedn.LogLevel.INFO,
type: Optional[fedn.StatusType] = None,
request: Optional[fedn.TaskRequest] = None,
type: Optional[str] = None,
request: Optional[Union[fedn.ModelUpdate, fedn.ModelValidation, fedn.TaskRequest]] = None,
sesssion_id: Optional[str] = None,
sender_name: Optional[str] = None,
) -> None:
Expand Down

0 comments on commit aab9db1

Please sign in to comment.