From e2f94c8a28e03b61c5c55f33760d5dd2e6f0bea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mose=20M=C3=BCller?= Date: Tue, 30 Apr 2024 13:02:58 +0200 Subject: [PATCH] updates Readme (mentions dict support under standard data types) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1a982ad..7d86433 100644 --- a/README.md +++ b/README.md @@ -223,6 +223,7 @@ In `pydase`, components are fundamental building blocks that bridge the Python b - `int` and `float`: Manifested as the `NumberComponent`. - `bool`: Rendered as a `ButtonComponent`. - `list`: Each item displayed individually, named after the list attribute and its index. +- `dict`: Each key-value pair displayed individually, named after the dictionary attribute and its key. **Note** that the dictionary keys must be strings. - `enum.Enum`: Presented as an `EnumComponent`, facilitating dropdown selection. ### Method Components