Skip to content
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