diff --git a/atest/robot/libdoc/datatypes_py-json.robot b/atest/robot/libdoc/datatypes_py-json.robot index 707fd4fd91c..6cee4f9615c 100644 --- a/atest/robot/libdoc/datatypes_py-json.robot +++ b/atest/robot/libdoc/datatypes_py-json.robot @@ -27,9 +27,18 @@ Keyword Arguments ${MODEL}[keywords][4][args] list_of_str: List[str] dict_str_int: Dict[str, int] Whatever: Any *args: List[typing.Any] TypedDict - ${Model}[dataTypes][typedDicts][0][type] TypedDict - ${Model}[dataTypes][typedDicts][0][name] GeoLocation - ${Model}[dataTypes][typedDicts][0][doc]

Defines the geolocation.

+ ${MODEL}[dataTypes][typedDicts][0][type] TypedDict + ${MODEL}[dataTypes][typedDicts][0][name] GeoLocation + ${MODEL}[dataTypes][typedDicts][0][doc]

Defines the geolocation.

+ ... + ...

Example usage: {'latitude': 59.95, 'longitude': 30.31667}

+ ${MODEL}[types][3][type] TypedDict + ${MODEL}[types][3][name] GeoLocation + ${MODEL}[types][3][doc]

Defines the geolocation.

...