Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.io.stream
Commits
98a46371
Commit
98a46371
authored
Sep 20, 2020
by
David GEISSBUHLER
Browse files
bugfix
parent
c0628fea
Changes
2
Hide whitespace changes
Inline
Side-by-side
api_test.py
View file @
98a46371
...
...
@@ -125,7 +125,7 @@ def test(data):
stream0
=
Stream
(
'test'
)
stream1
=
stream0
.
filter
(
process_frame
=
lambda
data
:
data
)
stream2
=
stream1
.
filter
(
process_frame
=
test
)
stream
.
put
(
data_a
[
0
])
stream
0
.
put
(
data_a
[
0
])
###########
...
...
bob/io/stream/stream.py
View file @
98a46371
...
...
@@ -269,7 +269,7 @@ class StreamFilter(Stream):
self
.
_data
=
data
# put downstream
if
self
.
child
is
not
None
:
child
.
put
(
data
,
timestamp
)
self
.
child
.
put
(
data
,
timestamp
)
################################################################################
### astype ###
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment