Skip to content

Commit

Permalink
formatting and default to 0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Laura-Danielle committed Oct 9, 2023
1 parent decafda commit bfab28d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
"partialTipSupported": true,
"availableConfigurations": [1, 2, 3, 4, 5, 6, 7, 8],
"perTipPickupCurrent": {
"1": 0.20,
"1": 0.2,
"2": 0.14,
"3": 0.20,
"3": 0.2,
"4": 0.28,
"5": 0.34,
"6": 0.41,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
"partialTipSupported": true,
"availableConfigurations": [1, 2, 3, 4, 5, 6, 7, 8],
"perTipPickupCurrent": {
"1": 0.20,
"1": 0.2,
"2": 0.14,
"3": 0.20,
"3": 0.2,
"4": 0.28,
"5": 0.34,
"6": 0.41,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class PlungerPositions(BaseModel):

class PlungerHomingConfigurations(BaseModel):
current: float = Field(
default=None,
default=0.0,
description="Either the z motor current needed for picking up tip or the plunger motor current for dropping tip off the nozzle.",
)
speed: float = Field(
Expand Down

0 comments on commit bfab28d

Please sign in to comment.