Skip to content

notset

NotSet

Represents value that is not set.

Can be used instead of the standard None in cases where None itself is a valid value.

robot.utils.NOT_SET is an instance of this class, but it in same cases it is better to create a separate instance.

New in Robot Framework 7.0.

Source code in src/robot/utils/notset.py
class NotSet:
    """Represents value that is not set.

    Can be used instead of the standard ``None`` in cases where ``None``
    itself is a valid value.

    ``robot.utils.NOT_SET`` is an instance of this class, but it in same cases
    it is better to create a separate instance.

    New in Robot Framework 7.0.
    """

    def __repr__(self):
        return ''