Skip to content

Commit

Permalink
Add __all__ in bricks/__init__.py
Browse files Browse the repository at this point in the history
Silence flake warning and make exported API explicit.
  • Loading branch information
dwf committed Jan 16, 2016
1 parent 009a31e commit 6d9c7df
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions blocks/bricks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,11 @@
NDimensionalSoftmax)
from .sequences import Sequence, FeedforwardSequence, MLP
from .wrappers import WithExtraDims

__all__ = ['application', 'Brick', 'lazy', 'BatchNormalization',
'SpatialBatchNormalization', 'BatchNormalizedMLP',
'Activation', 'Feedforward', 'Initializable', 'Random',
'Linear', 'Bias', 'Maxout', 'LinearMaxout', 'Identity',
'Tanh', 'Logistic', 'Softplus', 'Rectifier', 'Softmax',
'NDimensionalSoftmax', 'Sequence', 'FeedforwardSequence',
'MLP', 'WithExtraDims']

0 comments on commit 6d9c7df

Please sign in to comment.