Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 2bba96.ot2.apiv2.py #4955

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions protocols/2bba96/2bba96.ot2.apiv2.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
from types import MethodType
import math
import csv
from opentrons.protocols.api_support.types import APIVersion

metadata = {
'title': 'Custom Dilution From CSV',
'author': 'Steve Plonk',
'apiLevel': '2.10'
'apiLevel': '2.13'
}


Expand Down Expand Up @@ -70,7 +71,7 @@ def pause_attention(message):
class WellH(Well):
def __init__(self, well, min_height=5, comp_coeff=1.15,
current_volume=0):
super().__init__(well._impl)
super().__init__(well.parent, well._core, APIVersion(2, 13))
self.well = well
self.min_height = min_height
self.comp_coeff = comp_coeff
Expand Down
Loading