Skip to content

Commit faaa754

Browse files
author
“ramifarawi”
committed
fix
1 parent e394a31 commit faaa754

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

protocols/6d901d-2/6d901d-2.ot2.apiv2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def run(ctx: protocol_api.ProtocolContext):
9595
# Uncomment the next two lines if using Opentrons Robot Software version 7.2.x # noqa: E501
9696
# Comment them if NOT using 7.2.x
9797

98-
ctx._hw_manager.hardware.get_pipette(Mount.string_to_mount(pip.mount)).update_config_item(
98+
ctx._hw_manager.hardware.get_pipette(Mount.string_to_mount(pip.mount)).update_config_item( # noqa: E501
9999
{'pick_up_current': pick_up_current})
100100

101101
# Tip_map has the columns reversed, pipette always picks up the

protocols/6d901d/6d901d.ot2.apiv2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# flake8: noqa
12
from opentrons import protocol_api
23
from opentrons.types import Mount
34

@@ -13,7 +14,6 @@
1314
def transpose_matrix(m):
1415
return [[r[i] for r in reversed(m)] for i in range(len(m[0]))]
1516

16-
1717
def flatten_matrix(m):
1818
""" Converts a matrix to a 1D array, e.g. [[1,2],[3,4]] -> [1,2,3,4]
1919
"""

0 commit comments

Comments
 (0)