From 4cd7f1bf583db3d3770fc3a1f373c5ff996c14b6 Mon Sep 17 00:00:00 2001 From: vegano1 Date: Fri, 12 Jan 2024 20:49:32 -0500 Subject: [PATCH] lint --- .../opentrons_hardware/firmware_bindings/test_constants.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/hardware/tests/opentrons_hardware/firmware_bindings/test_constants.py b/hardware/tests/opentrons_hardware/firmware_bindings/test_constants.py index 2e3f80c716d..f8c9a182c55 100644 --- a/hardware/tests/opentrons_hardware/firmware_bindings/test_constants.py +++ b/hardware/tests/opentrons_hardware/firmware_bindings/test_constants.py @@ -43,7 +43,6 @@ def test_is_bootloader(node_id: NodeId) -> None: @pytest.mark.parametrize("node_id", [n.application_for() for n in NodeId]) def test_bootloader_for(node_id: NodeId) -> None: """Test application node id to bootloader node id mapping.""" - # There is no bootloader for these nodes, they return themselves. if node_id in {NodeId.broadcast, NodeId.host}: assert node_id.bootloader_for() == node_id @@ -56,7 +55,6 @@ def test_bootloader_for(node_id: NodeId) -> None: @pytest.mark.parametrize("node_id", {n for n in NodeId}) def test_application_for(node_id: NodeId) -> None: """Test bootloader node to application node mapping.""" - # bootloaders should produce application nodes if node_id.is_bootloader(): assert node_id.application_for() == NodeId.bootloader_map()[node_id][0]