Skip to content

Commit

Permalink
Update 2bba96.ot2.apiv2.py
Browse files Browse the repository at this point in the history
Issue: update in app software created conflict in liquid volume and height tracking command

Changes Implemented:
>Line 74 Initially:  super().__init__(well._impl)
>Line 74 Correction: super().__init__(well.parent, well._core, APIVersion(2, 13))

>Also added in line 5: from opentrons.protocols.api_support.types import APIVersion
  • Loading branch information
Abel-Tes authored Nov 8, 2023
1 parent 11a411e commit e8ea255
Showing 1 changed file with 3 additions and 2 deletions.
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

0 comments on commit e8ea255

Please sign in to comment.