Support zero index stream selectors

This commit is contained in:
Artem Eltyshev 2021-02-09 17:43:40 +03:00
parent 4cb7d26f55
commit 7da1f6af23

View File

@ -48,7 +48,7 @@ def _get_input_args(input_node):
def _format_input_stream_name(stream_name_map, edge, is_final_arg=False):
prefix = stream_name_map[edge.upstream_node, edge.upstream_label]
if not edge.upstream_selector:
if edge.upstream_selector is None:
suffix = ''
else:
suffix = ':{}'.format(edge.upstream_selector)