From b92e149b26736aa3a7da98aa93fe2b14f24fcef1 Mon Sep 17 00:00:00 2001 From: Sunny Sun <38218185+sunnyosun@users.noreply.github.com> Date: Tue, 17 Sep 2024 16:14:14 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20typo=20in=20docstrin?= =?UTF-8?q?g?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lnschema_core/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnschema_core/models.py b/lnschema_core/models.py index 2ea89541..c1df04bd 100644 --- a/lnschema_core/models.py +++ b/lnschema_core/models.py @@ -1487,7 +1487,7 @@ class Feature(Record, CanValidate, TracksRun, TracksUpdates): Args: name: `str` Name of the feature, typically. column name. - type: `str | list[Type[Record]]` Data type ("number", "cat", "int", "float", "bool", "datetime"). + dtype: `str | list[Type[Record]]` Data type ("number", "cat", "int", "float", "bool", "datetime"). For categorical types, can define from which registry values are sampled, e.g., `cat[ULabel]` or `cat[bionty.CellType]`. unit: `str | None = None` Unit of measure, ideally SI (`"m"`, `"s"`, `"kg"`, etc.) or `"normalized"` etc.