-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Alternative Take on Factories (#916)
* API change - factories
- Loading branch information
Dominik Neise
authored
Feb 20, 2019
1 parent
9cbaaef
commit 79ad0e0
Showing
41 changed files
with
775 additions
and
1,067 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
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 |
---|---|---|
@@ -1,10 +1,17 @@ | ||
# Licensed under a 3-clause BSD style license - see LICENSE.rst | ||
|
||
from .component import Component | ||
from .component import Component, non_abstract_children | ||
from .container import Container, Field, Map | ||
from .factory import Factory | ||
from .provenance import Provenance | ||
from .tool import Tool, ToolConfigurationError | ||
|
||
__all__ = ['Component', 'Container', 'Tool', 'Field', 'Map', 'Factory', | ||
'Provenance', 'ToolConfigurationError'] | ||
__all__ = [ | ||
'Component', | ||
'Container', | ||
'Tool', | ||
'Field', | ||
'Map', | ||
'Provenance', | ||
'ToolConfigurationError', | ||
'non_abstract_children', | ||
] |
Oops, something went wrong.