(stream_map)
| 134 | |
| 135 | |
| 136 | def get_stream_map_nodes(stream_map): |
| 137 | nodes = [] |
| 138 | for stream in list(stream_map.values()): |
| 139 | if not isinstance(stream, Stream): |
| 140 | raise TypeError('Expected Stream; got {}'.format(type(stream))) |
| 141 | nodes.append(stream.node) |
| 142 | return nodes |
| 143 | |
| 144 | |
| 145 | def get_stream_spec_nodes(stream_spec): |
no outgoing calls
no test coverage detected
searching dependent graphs…