Skip to content

Commit 39de3cf

Browse files
committed
missing import
1 parent 185c1fd commit 39de3cf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/riverine/echo.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
from riverine.util import gen_random_hash, maybe_cache_once
1212

13-
from .actions import AbstractAction, ActionWithComponents
13+
from .actions import AbstractAction, ActionWithComponents, _STRUCTURE_CLASSES
1414
from .experiments import Experiment
1515
from .mixes import Mix
1616
from .printing import MixLine
@@ -505,7 +505,6 @@ def each_volumes(
505505
round(maybe_vol)
506506
* self.droplet_volume
507507
]
508-
return ea_vols
509508

510509
@maybe_cache_once
511510
def _mixlines(
@@ -542,3 +541,6 @@ def _mixlines(
542541
# """Use an intermediate mix to obtain a target concentration."""
543542

544543
# ...
544+
545+
for c in [EchoFixedVolume, EchoEqualTargetConcentration, EchoTargetConcentration, EchoFillToVolume]:
546+
_STRUCTURE_CLASSES[c.__name__] = c

0 commit comments

Comments
 (0)