Skip to content

Commit 51530fb

Browse files
Renamed dev methods
1 parent 5e9454c commit 51530fb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

v6-session-basics/central.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def global_sum(client: AlgorithmClient, column: str) -> dict:
3838

3939
@central
4040
@algorithm_client
41-
def global_sum_(client: AlgorithmClient, column: str) -> dict:
41+
def global_sum_dev(client: AlgorithmClient, column: str) -> dict:
4242
info("Central function that sums the results of the federated sum function")
4343

4444
# Collect all organization that participate in this collaboration.

v6-session-basics/partial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def sleep(seconds: int) -> dict:
5050

5151
@federated
5252
@dataframe(1)
53-
def sum_(df1: pd.DataFrame, column: str) -> dict:
53+
def sum_dev(df1: pd.DataFrame, column: str) -> dict:
5454
info(f"Summing column {column}")
5555
return {"sum": int(df1[column].sum())}
5656

0 commit comments

Comments
 (0)