@@ -1714,7 +1714,8 @@ async def aspirate(
17141714
17151715 if mix_volume is not None or mix_cycles is not None or mix_speed is not None :
17161716 raise NotImplementedError (
1717- "Mixing through backend kwargs is deprecated. Use the `mix` parameter of LiquidHandler.aspirate instead."
1717+ "Mixing through backend kwargs is deprecated. Use the `mix` parameter of LiquidHandler.aspirate instead. "
1718+ "https://docs.pylabrobot.org/user_guide/00_liquid-handling/mixing.html"
17181719 )
17191720
17201721 x_positions , y_positions , channels_involved = self ._ops_to_fw_positions (ops , use_channels )
@@ -2009,7 +2010,8 @@ async def dispense(
20092010
20102011 if mix_volume is not None or mix_cycles is not None or mix_speed is not None :
20112012 raise NotImplementedError (
2012- "Mixing through backend kwargs is deprecated. Use the `mix` parameter of LiquidHandler.dispense instead."
2013+ "Mixing through backend kwargs is deprecated. Use the `mix` parameter of LiquidHandler.dispense instead. "
2014+ "https://docs.pylabrobot.org/user_guide/00_liquid-handling/mixing.html"
20132015 )
20142016
20152017 x_positions , y_positions , channels_involved = self ._ops_to_fw_positions (ops , use_channels )
@@ -2329,7 +2331,8 @@ async def aspirate96(
23292331
23302332 if mix_volume != 0 or mix_cycles != 0 or speed_of_mix != 0 :
23312333 raise NotImplementedError (
2332- "Mixing through backend kwargs is deprecated. Use the `mix` parameter of LiquidHandler.aspirate96 instead."
2334+ "Mixing through backend kwargs is deprecated. Use the `mix` parameter of LiquidHandler.aspirate96 instead. "
2335+ "https://docs.pylabrobot.org/user_guide/00_liquid-handling/mixing.html"
23332336 )
23342337
23352338 assert self .core96_head_installed , "96 head must be installed"
@@ -2529,7 +2532,8 @@ async def dispense96(
25292532
25302533 if mixing_volume != 0 or mixing_cycles != 0 or speed_of_mixing != 0 :
25312534 raise NotImplementedError (
2532- "Mixing through backend kwargs is deprecated. Use the `mix` parameter of LiquidHandler.dispense instead."
2535+ "Mixing through backend kwargs is deprecated. Use the `mix` parameter of LiquidHandler.dispense instead. "
2536+ "https://docs.pylabrobot.org/user_guide/00_liquid-handling/mixing.html"
25332537 )
25342538
25352539 assert self .core96_head_installed , "96 head must be installed"
0 commit comments