From 193f113a2d248a981b0c0fd30903285d20987161 Mon Sep 17 00:00:00 2001 From: Seth Foster Date: Fri, 22 Nov 2024 15:22:22 -0500 Subject: [PATCH] i think this is it --- .../opentrons_shared_data/pipette/mutable_configurations.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shared-data/python/opentrons_shared_data/pipette/mutable_configurations.py b/shared-data/python/opentrons_shared_data/pipette/mutable_configurations.py index 06b31215b65..fbfcfe6fa72 100644 --- a/shared-data/python/opentrons_shared_data/pipette/mutable_configurations.py +++ b/shared-data/python/opentrons_shared_data/pipette/mutable_configurations.py @@ -58,6 +58,9 @@ def _do_edit_non_quirk( elif thiskey == "##EACHTIPTYPE##": for key in existing.keys(): _do_edit_non_quirk(new_value, existing[key], restkeys) + elif thiskey == "##EACHTIP##": + for key in existing.keys(): + _do_edit_non_quirk(new_value, existing[key], restkeys) else: _do_edit_non_quirk(new_value, existing[thiskey], restkeys) else: