Source code for databay.inlets.null_inlet

from databay import Inlet


[docs]class NullInlet(Inlet): # pragma: no cover """ Inlet that doesn't do anything, essentially a 'no-op' inlet. """
[docs] def pull(self, update): """ Doesn't produce anything. :returns: empty list """ return []