Skip to content

Commit

Permalink
make run_id mandatory
Browse files Browse the repository at this point in the history
  • Loading branch information
panh99 committed Nov 13, 2024
1 parent ef39afb commit a0c1d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/py/flwr/common/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ class Run: # pylint: disable=too-many-instance-attributes
status: RunStatus

@classmethod
def create_empty(cls, run_id: int = 0) -> "Run":
def create_empty(cls, run_id) -> "Run":
"""Return an empty Run instance."""
return cls(
run_id=run_id,
Expand Down

0 comments on commit a0c1d5f

Please sign in to comment.