From ba04133531b7569a3cfd3e47c3eb7a9ec49e214b Mon Sep 17 00:00:00 2001 From: Isaac To Date: Wed, 6 Dec 2023 10:58:41 -0800 Subject: [PATCH] Correct typo in kwarg to `Field` `description` instead of `descriptions` --- dandischema/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dandischema/models.py b/dandischema/models.py index 8e404026..4432fca5 100644 --- a/dandischema/models.py +++ b/dandischema/models.py @@ -1362,7 +1362,7 @@ class CommonModel(DandiBaseModel): ) acknowledgement: Optional[str] = Field( None, - descriptions="Any acknowledgments not covered by contributors or external resources.", + description="Any acknowledgments not covered by contributors or external resources.", json_schema_extra={"nskey": "dandi"}, )