-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refact: format and makes import from fate.arch rel
Signed-off-by: weiwee <wbwmat@gmail.com>
- Loading branch information
Showing
113 changed files
with
3,555 additions
and
2,226 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
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,7 +1,6 @@ | ||
|
||
from fate_arch.abc._gc import GarbageCollectionABC | ||
from fate_arch.abc._address import AddressABC | ||
from fate_arch.abc._computing import CTableABC, CSessionABC | ||
from fate_arch.abc._storage import StorageTableABC, StorageSessionABC, StorageTableMetaABC | ||
from fate_arch.abc._federation import FederationABC | ||
from fate_arch.abc._components import Components, ComponentMeta | ||
from ._address import AddressABC | ||
from ._components import ComponentMeta, Components | ||
from ._computing import CSessionABC, CTableABC | ||
from ._federation import FederationABC | ||
from ._gc import GarbageCollectionABC | ||
from ._storage import StorageSessionABC, StorageTableABC, StorageTableMetaABC |
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
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 |
---|---|---|
|
@@ -2,6 +2,5 @@ | |
|
||
|
||
class GarbageCollectionABC(metaclass=abc.ABCMeta): | ||
|
||
def add_gc_action(self, tag: str, obj, method, args_dict): | ||
... |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
from fate_arch.common._types import FederatedMode, FederatedCommunicationType, EngineType, CoordinationProxyService, \ | ||
CoordinationCommunicationProtocol | ||
from fate_arch.common._types import BaseType, Party, DTable | ||
from ._types import ( | ||
BaseType, | ||
CoordinationCommunicationProtocol, | ||
CoordinationProxyService, | ||
DTable, | ||
EngineType, | ||
FederatedCommunicationType, | ||
FederatedMode, | ||
Party, | ||
) |
Oops, something went wrong.