Skip to content

Commit 0db4877

Browse files
8580d9846fb33803c4893c3c4cbd9e0410bc1461
1 parent d8fbaba commit 0db4877

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/PointBase.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**coordinates** | **List[Optional[float]]** | Location of the significant coordinate in three dimensional space. | [optional]
8+
**coordinates** | **List[float]** | Location of the significant coordinate in three dimensional space. | [optional]
99
**space** | **str** | Template space used to determine coordinate Examples include TAL or MNI. | [optional]
1010
**kind** | **str** | Method of how point was derived (e.g., center of mass) | [optional]
1111
**label_id** | **str** | If the point is associated with an image, this is the value the point takes in that image. | [optional]

docs/PointRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**coordinates** | **List[Optional[float]]** | Location of the significant coordinate in three dimensional space. | [optional]
8+
**coordinates** | **List[float]** | Location of the significant coordinate in three dimensional space. | [optional]
99
**space** | **str** | Template space used to determine coordinate Examples include TAL or MNI. | [optional]
1010
**kind** | **str** | Method of how point was derived (e.g., center of mass) | [optional]
1111
**label_id** | **str** | If the point is associated with an image, this is the value the point takes in that image. | [optional]

docs/PointReturn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**coordinates** | **List[Optional[float]]** | Location of the significant coordinate in three dimensional space. | [optional]
8+
**coordinates** | **List[float]** | Location of the significant coordinate in three dimensional space. | [optional]
99
**space** | **str** | Template space used to determine coordinate Examples include TAL or MNI. | [optional]
1010
**kind** | **str** | Method of how point was derived (e.g., center of mass) | [optional]
1111
**label_id** | **str** | If the point is associated with an image, this is the value the point takes in that image. | [optional]

neurostore_sdk/models/point_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class PointBase(BaseModel):
2828
"""
2929
PointBase
3030
""" # noqa: E501
31-
coordinates: Optional[Annotated[List[Optional[Union[StrictFloat, StrictInt]]], Field(min_length=3, max_length=3)]] = Field(default=None, description="Location of the significant coordinate in three dimensional space.")
31+
coordinates: Optional[Annotated[List[Union[StrictFloat, StrictInt]], Field(min_length=3, max_length=3)]] = Field(default=None, description="Location of the significant coordinate in three dimensional space.")
3232
space: Optional[StrictStr] = Field(default=None, description="Template space used to determine coordinate Examples include TAL or MNI.")
3333
kind: Optional[StrictStr] = Field(default=None, description="Method of how point was derived (e.g., center of mass)")
3434
label_id: Optional[StrictStr] = Field(default=None, description="If the point is associated with an image, this is the value the point takes in that image.")

neurostore_sdk/models/point_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class PointRequest(BaseModel):
3030
"""
3131
PointRequest
3232
""" # noqa: E501
33-
coordinates: Optional[Annotated[List[Optional[Union[StrictFloat, StrictInt]]], Field(min_length=3, max_length=3)]] = Field(default=None, description="Location of the significant coordinate in three dimensional space.")
33+
coordinates: Optional[Annotated[List[Union[StrictFloat, StrictInt]], Field(min_length=3, max_length=3)]] = Field(default=None, description="Location of the significant coordinate in three dimensional space.")
3434
space: Optional[StrictStr] = Field(default=None, description="Template space used to determine coordinate Examples include TAL or MNI.")
3535
kind: Optional[StrictStr] = Field(default=None, description="Method of how point was derived (e.g., center of mass)")
3636
label_id: Optional[StrictStr] = Field(default=None, description="If the point is associated with an image, this is the value the point takes in that image.")

neurostore_sdk/models/point_return.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class PointReturn(BaseModel):
3131
"""
3232
PointReturn
3333
""" # noqa: E501
34-
coordinates: Optional[Annotated[List[Optional[Union[StrictFloat, StrictInt]]], Field(min_length=3, max_length=3)]] = Field(default=None, description="Location of the significant coordinate in three dimensional space.")
34+
coordinates: Optional[Annotated[List[Union[StrictFloat, StrictInt]], Field(min_length=3, max_length=3)]] = Field(default=None, description="Location of the significant coordinate in three dimensional space.")
3535
space: Optional[StrictStr] = Field(default=None, description="Template space used to determine coordinate Examples include TAL or MNI.")
3636
kind: Optional[StrictStr] = Field(default=None, description="Method of how point was derived (e.g., center of mass)")
3737
label_id: Optional[StrictStr] = Field(default=None, description="If the point is associated with an image, this is the value the point takes in that image.")

0 commit comments

Comments
 (0)