Skip to content

Commit 25b46d3

Browse files
committed
run pre-commit
1 parent 16f31fe commit 25b46d3

File tree

5 files changed

+10
-26
lines changed

5 files changed

+10
-26
lines changed

.github/workflows/e2e-tests.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ jobs:
1818
strategy:
1919
max-parallel: 99
2020
matrix:
21-
e2e-test:
22-
[
21+
e2e-test: [
2322
"basic_aggregator",
2423
"model_aggregator",
2524
"aggregator_with_local_training",
@@ -33,7 +32,6 @@ jobs:
3332
# runs-on: ${{ matrix.runner }}
3433
runs-on: ${{ matrix.os }}
3534
steps:
36-
3735
- name: Free Disk Space
3836
run: |
3937
sudo rm -rf /Users/runner/Library/Android/sdk || true

notebooks/02-trade-code.ipynb

+1-3
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,7 @@
176176
"source": [
177177
"# TEMP bug where we cant use theirs_with_my_read because the parent write is ignored but allowing the perm file to set its own\n",
178178
"# rules wont work either so we need to solve the permissioning of files themselves\n",
179-
"path = myanalysis.to_flow(\n",
180-
" client_config=client_config, inputs={\"trade_data\": trade_data}\n",
181-
")\n",
179+
"path = myanalysis.to_flow(client_config=client_config, inputs={\"trade_data\": trade_data})\n",
182180
"path"
183181
]
184182
},

notebooks/03-netflix-code.ipynb

+4-13
Original file line numberDiff line numberDiff line change
@@ -347,15 +347,10 @@
347347
" non_zero_indices = np.nonzero(tv_count_array)[0].astype(int)\n",
348348
" non_zero_values = tv_count_array[non_zero_indices].astype(int)\n",
349349
" outer_part = counter * slice_size\n",
350-
" non_zero_dict = {\n",
351-
" int(k + outer_part): int(v)\n",
352-
" for k, v in dict(zip(non_zero_indices, non_zero_values)).items()\n",
353-
" }\n",
350+
" non_zero_dict = {int(k + outer_part): int(v) for k, v in dict(zip(non_zero_indices, non_zero_values)).items()}\n",
354351
" tmdb_id_value_counts.update(non_zero_dict)\n",
355352
" counter += 1\n",
356-
" stats[\"value_counts\"] = dict(\n",
357-
" sorted(tmdb_id_value_counts.items(), key=lambda item: item[1], reverse=True)\n",
358-
" )\n",
353+
" stats[\"value_counts\"] = dict(sorted(tmdb_id_value_counts.items(), key=lambda item: item[1], reverse=True))\n",
359354
" return stats\n",
360355
"\n",
361356
"\n",
@@ -380,13 +375,9 @@
380375
" top_5_summary = {}\n",
381376
" top_5_summary[\"avg_time\"] = round(all_results[\"total_time\"] / num_parties)\n",
382377
" top_5_summary[\"avg_views\"] = round(all_results[\"total_views\"] / num_parties)\n",
383-
" top_5_summary[\"avg_unique_show_views\"] = round(\n",
384-
" all_results[\"total_unique_show_views\"] / num_parties\n",
385-
" )\n",
378+
" top_5_summary[\"avg_unique_show_views\"] = round(all_results[\"total_unique_show_views\"] / num_parties)\n",
386379
" top_5_summary[\"top_5\"] = dict(\n",
387-
" sorted(\n",
388-
" all_results[\"value_counts\"].items(), key=lambda item: item[1], reverse=True\n",
389-
" )[:top_k]\n",
380+
" sorted(all_results[\"value_counts\"].items(), key=lambda item: item[1], reverse=True)[:top_k]\n",
390381
" )\n",
391382
" return top_5_summary\n",
392383
"\n",

syftbox/client/utils/file_manager.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,9 @@ def _convert_to_windows_path(folder_path: str) -> str:
9292
"""
9393
try:
9494
# Use wslpath to convert the path
95-
result = subprocess.run(
96-
["wslpath", "-w", folder_path], capture_output=True, text=True, check=True
97-
)
95+
result = subprocess.run(["wslpath", "-w", folder_path], capture_output=True, text=True, check=True)
9896
return result.stdout.strip()
99-
except Exception as e:
97+
except Exception:
10098
return ""
10199

102100

tests/e2e/test_aggregator_with_local_training.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import asyncio
22
import json
3-
import os
43
import secrets
54
import shutil
65
from pathlib import Path
76

87
import pytest
98
from loguru import logger
109

11-
from tests.e2e.conftest import Client, E2EContext, Server, E2ETimeoutError
10+
from tests.e2e.conftest import Client, E2EContext, E2ETimeoutError, Server
1211

1312
AGGREGATOR_CONFIG = {
1413
@@ -123,7 +122,7 @@ async def test_e2e_aggregator_with_local_training(e2e_context: E2EContext):
123122
agg_private_dir.mkdir(parents=True, exist_ok=True)
124123
agg_priv_data_path = agg_private_dir / "mnist_dataset.pt"
125124
test_dataset_path = agg_client.api_path(AGGREGATOR_API_NAME) / "samples" / "test_data" / "mnist_dataset.pt"
126-
with open(test_dataset_path, 'rb') as src, open(agg_priv_data_path, 'wb') as dst:
125+
with open(test_dataset_path, "rb") as src, open(agg_priv_data_path, "wb") as dst:
127126
shutil.copyfileobj(src, dst)
128127
await verify_file_sizes(test_dataset_path, agg_priv_data_path)
129128
await e2e_context.wait_for_path(agg_priv_data_path, timeout=60, interval=1)

0 commit comments

Comments
 (0)