Skip to content

Commit 3d8db83

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 6babf2d commit 3d8db83

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+70
-140
lines changed

fl_sim/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
"""
1+
""" """
32

43
from . import algorithms, compressors, data_processing, models, nodes, optimizers, regularizers, utils
54
from .version import __version__

fl_sim/algorithms/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
"""
1+
""" """
32

43
from . import ( # noqa: F401
54
apfl,

fl_sim/algorithms/_misc.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
"""
1+
""" """
32

43
server_config_kw_doc = """
54
- ``log_dir`` : str or pathlib.Path, optional

fl_sim/algorithms/_register.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
"""
1+
""" """
32

43
import re
54
import warnings

fl_sim/algorithms/apfl/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
"""
1+
""" """
32

43
from ._apfl import APFLClient, APFLClientConfig, APFLServer, APFLServerConfig
54
from .test_apfl import test_apfl

fl_sim/algorithms/apfl/_apfl.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
"""
1+
""" """
32

43
import warnings
54
from copy import deepcopy

fl_sim/algorithms/apfl/test_apfl.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
"""
1+
""" """
32

43
from ...data_processing.fed_synthetic import FedSynthetic
54
from ...data_processing.fedprox_femnist import FedProxFEMNIST

fl_sim/algorithms/ditto/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
"""
1+
""" """
32

43
from ._ditto import DittoClient, DittoClientConfig, DittoServer, DittoServerConfig
54
from .test_ditto import test_ditto

fl_sim/algorithms/ditto/_ditto.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
"""
1+
""" """
32

43
import warnings
54
from copy import deepcopy

fl_sim/algorithms/ditto/test_ditto.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
"""
1+
""" """
32

43
from ...data_processing.fed_synthetic import FedSynthetic
54
from ...data_processing.fedprox_femnist import FedProxFEMNIST

0 commit comments

Comments
 (0)