Null implementation of the _MarkupWriter interface.
Source code in src/robot/utils/markupwriters.py
| class NullMarkupWriter:
"""Null implementation of the _MarkupWriter interface."""
__init__ = start = content = element = end = close = lambda *args, **kwargs: None
|