Source code for ls.joyous.formats.null

# ------------------------------------------------------------------------------
# Null Page Export Handler
# ------------------------------------------------------------------------------
[docs]class NullHandler: """Serve nothing (when nothing else matches)""" def serve(self, page, request, *args, **kwargs): return None
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------