-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update component module functions docstrings for fix lint warnings
- Loading branch information
1 parent
2fc449d
commit eff0924
Showing
13 changed files
with
477 additions
and
430 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,16 @@ | ||
# Copyright (C) 2020-2023 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
"""openfl.component package.""" | ||
|
||
from .aggregator import Aggregator | ||
from .assigner import Assigner | ||
from .assigner import RandomGroupedAssigner | ||
from .assigner import StaticGroupedAssigner | ||
from .assigner import Assigner, RandomGroupedAssigner, StaticGroupedAssigner | ||
from .collaborator import Collaborator | ||
from .straggler_handling_functions import StragglerHandlingFunction | ||
from .straggler_handling_functions import CutoffTimeBasedStragglerHandling | ||
from .straggler_handling_functions import PercentageBasedStragglerHandling | ||
from .straggler_handling_functions import (CutoffTimeBasedStragglerHandling, | ||
PercentageBasedStragglerHandling, | ||
StragglerHandlingFunction) | ||
|
||
__all__ = [ | ||
'Assigner', | ||
'RandomGroupedAssigner', | ||
'StaticGroupedAssigner', | ||
'Aggregator', | ||
'Collaborator', | ||
'StragglerHandlingFunction', | ||
'CutoffTimeBasedStragglerHandling', | ||
'PercentageBasedStragglerHandling' | ||
'Assigner', 'RandomGroupedAssigner', 'StaticGroupedAssigner', 'Aggregator', | ||
'Collaborator', 'StragglerHandlingFunction', | ||
'CutoffTimeBasedStragglerHandling', 'PercentageBasedStragglerHandling' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
# Copyright (C) 2020-2023 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
"""Director package.""" | ||
|
||
from .director import Director | ||
|
||
|
||
__all__ = [ | ||
'Director', | ||
] |
Oops, something went wrong.