Skip to content

Commit

Permalink
minor lint stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-kulkarni committed Jul 23, 2024
1 parent bb5795f commit f2cd78e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@

def run(protocol_context):
tip_rack = protocol_context.load_labware("opentrons_96_tiprack_10ul", "3")
plate = protocol_context.load_labware(
"custom_labware", "1", namespace="custom"
)
plate = protocol_context.load_labware("custom_labware", "1", namespace="custom")

pipette = protocol_context.load_instrument(
"p10_single", "left", tip_racks=[tip_rack]
Expand Down
7 changes: 1 addition & 6 deletions app/src/assets/labware/__tests__/findLabware.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,7 @@ describe('findLabwareDefWithCustom', () => {

it('handles no-custom-labware', () => {
expect(
findLabwareDefWithCustom(
'custom',
'opentrons_96_tiprack_300ul',
'1',
[]
)
findLabwareDefWithCustom('custom', 'opentrons_96_tiprack_300ul', '1', [])
).toBe(null)
})

Expand Down
2 changes: 2 additions & 0 deletions hardware/opentrons_hardware/hardware_control/tool_sensors.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@
# FIXME we should organize all of these functions to use the sensor drivers.
# FIXME we should restrict some of these functions by instrument type.

PLUNGER_SOLO_MOVE_TIME = 0.2


def _fix_pass_step_for_buffer(
move_group: MoveGroupStep,
Expand Down
4 changes: 2 additions & 2 deletions labware-designer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ To build a _regular_ labware, the `options` object should have the following sha
| `group` | [Group](#Group) | no | Well group parameters |
| `brand` | [Brand](#Brand) | no | Labware manufacturer ("generic" if omitted) |
| `version` | [number](#Version) | no | Version of the definition, should be incremented if non-metadata info is altered (defaults to `1`) |
| `namespace` | [string](#Namespace) | no | Defaults to "custom" |
| `namespace` | [string](#Namespace) | no | Defaults to "custom" |
| `loadNamePostfix` | [Array<string>](#LoadNamePostfix) | no | Array of additional strings to postfix the loadName with |

This example generates [corning_96_wellplate_360ul_flat][]:
Expand Down Expand Up @@ -170,7 +170,7 @@ To build an _irregular_ labware, the `options` object should have the following
| `group` | Array<[Group](#Group)> | no | Well group parameters per grid |
| `brand` | [Brand](#Brand) | no | Labware manufacturer information |
| `version` | [number](#Version) | no | Version of the definition, should be incremented if non-metadata info is altered (defaults to `1`) |
| `namespace` | [string](#Namespace) | no | Defaults to "custom" |
| `namespace` | [string](#Namespace) | no | Defaults to "custom" |
| `loadNamePostfix` | [Array<string>](#LoadNamePostfix) | no | Array of additional strings to postfix the loadName with |

This example generates [opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical][]
Expand Down

0 comments on commit f2cd78e

Please sign in to comment.