Skip to content

Commit

Permalink
Fix microplates.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuffster committed Sep 14, 2015
1 parent 90d1259 commit 1658cf3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion labware/microplates.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from .liquids import LiquidContainer, LiquidWell


class Microplate(GridContainer, LiquidContainer):
class Microplate(GridContainer):
rows = 8
cols = 12
volume = 100
Expand All @@ -17,6 +17,8 @@ class Microplate(GridContainer, LiquidContainer):
a1_y = 11.24
spacing = 9

child_class = LiquidWell

def well(self, position):
return self.get_child(position)

Expand Down

0 comments on commit 1658cf3

Please sign in to comment.