From a79d1cc80259595fa2411a1781f0060c6975601a Mon Sep 17 00:00:00 2001 From: Saskia de Vries Date: Tue, 20 Aug 2024 10:59:24 -0700 Subject: [PATCH] lint --- src/aind_data_schema/core/procedures.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/aind_data_schema/core/procedures.py b/src/aind_data_schema/core/procedures.py index 9ce0a438..912d9e53 100644 --- a/src/aind_data_schema/core/procedures.py +++ b/src/aind_data_schema/core/procedures.py @@ -568,7 +568,9 @@ class MyomatrixContact(AindModel): class MyomatrixThread(AindModel): """Description of a thread of a myomatrix array""" - ground_electrode_location: MouseAnatomicalStructure.BODY_PARTS._ONE_OF = Field(..., title="Location of ground electrode") + ground_electrode_location: MouseAnatomicalStructure.BODY_PARTS._ONE_OF = Field( + ..., title="Location of ground electrode" + ) contacts: List[MyomatrixContact] = Field(..., title="Contacts")