Skip to content

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnVinyard committed Jun 24, 2017
1 parent 9380b67 commit 017e57f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion featureflow/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.16.14'
__version__ = '1.17.14'

from model import BaseModel

Expand Down
16 changes: 8 additions & 8 deletions featureflow/bytestream.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,11 @@ def __init__(
key=None,
**extractor_args):
super(ByteStreamFeature, self).__init__(
extractor,
needs=needs,
store=store,
encoder=StringWithTotalLengthEncoder,
decoder=StringWithTotalLengthDecoder(
chunksize=extractor_args['chunksize']),
key=key,
**extractor_args)
extractor,
needs=needs,
store=store,
encoder=StringWithTotalLengthEncoder,
decoder=StringWithTotalLengthDecoder(
chunksize=extractor_args['chunksize']),
key=key,
**extractor_args)

0 comments on commit 017e57f

Please sign in to comment.