Skip to content

robot.descriptor

Testing how mkdocstrings handles descriptors.

This module is not part of normal Robot Framework code.

Example

Example(count: int = 1)

Example using descriptor.

Source code in src/robot/descriptor.py
def __init__(self, count: int = 1):
    self.count = count

count class-attribute instance-attribute

count = count

Count as a positive integer.