Method
__init__
(self, name, args=[], kwargs={})
Source from the content-addressed store, hash-verified
| 244 | """InputNode type""" |
| 245 | |
| 246 | def __init__(self, name, args=[], kwargs={}): |
| 247 | super(InputNode, self).__init__( |
| 248 | stream_spec=None, |
| 249 | name=name, |
| 250 | incoming_stream_types={}, |
| 251 | outgoing_stream_type=FilterableStream, |
| 252 | min_inputs=0, |
| 253 | max_inputs=0, |
| 254 | args=args, |
| 255 | kwargs=kwargs, |
| 256 | ) |
| 257 | |
| 258 | @property |
| 259 | def short_repr(self): |
Callers
nothing calls this directly
Tested by
no test coverage detected