Skip to content

Commit

Permalink
fix(api): correctionVolume can be negative (#17413)
Browse files Browse the repository at this point in the history
  • Loading branch information
andySigler authored Feb 6, 2025
1 parent 926b5cd commit a693b6c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ class AspirateVolumeMixin(BaseModel):
correctionVolume: Optional[float] = Field(
None,
description="The correction volume in uL.",
ge=0,
)


Expand All @@ -65,7 +64,6 @@ class DispenseVolumeMixin(BaseModel):
correctionVolume: Optional[float] = Field(
None,
description="The correction volume in uL.",
ge=0,
)


Expand Down
8 changes: 0 additions & 8 deletions shared-data/command/schemas/12.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@
"correctionVolume": {
"anyOf": [
{
"minimum": 0.0,
"type": "number"
},
{
Expand Down Expand Up @@ -176,7 +175,6 @@
"correctionVolume": {
"anyOf": [
{
"minimum": 0.0,
"type": "number"
},
{
Expand Down Expand Up @@ -215,7 +213,6 @@
"correctionVolume": {
"anyOf": [
{
"minimum": 0.0,
"type": "number"
},
{
Expand Down Expand Up @@ -413,7 +410,6 @@
"correctionVolume": {
"anyOf": [
{
"minimum": 0.0,
"type": "number"
},
{
Expand Down Expand Up @@ -1521,7 +1517,6 @@
"correctionVolume": {
"anyOf": [
{
"minimum": 0.0,
"type": "number"
},
{
Expand Down Expand Up @@ -1565,7 +1560,6 @@
"correctionVolume": {
"anyOf": [
{
"minimum": 0.0,
"type": "number"
},
{
Expand Down Expand Up @@ -1651,7 +1645,6 @@
"correctionVolume": {
"anyOf": [
{
"minimum": 0.0,
"type": "number"
},
{
Expand Down Expand Up @@ -1914,7 +1907,6 @@
"correctionVolume": {
"anyOf": [
{
"minimum": 0.0,
"type": "number"
},
{
Expand Down

0 comments on commit a693b6c

Please sign in to comment.