Method
__init__
(self, stream, name, args=[], kwargs={})
Source from the content-addressed store, hash-verified
| 303 | # noinspection PyMethodOverriding |
| 304 | class OutputNode(Node): |
| 305 | def __init__(self, stream, name, args=[], kwargs={}): |
| 306 | super(OutputNode, self).__init__( |
| 307 | stream_spec=stream, |
| 308 | name=name, |
| 309 | incoming_stream_types={FilterableStream}, |
| 310 | outgoing_stream_type=OutputStream, |
| 311 | min_inputs=1, |
| 312 | max_inputs=None, |
| 313 | args=args, |
| 314 | kwargs=kwargs, |
| 315 | ) |
| 316 | |
| 317 | @property |
| 318 | def short_repr(self): |
Callers
nothing calls this directly
Tested by
no test coverage detected