From d9ee63b0c1788d5421d75d105d1651819c40c8dd Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Sat, 8 May 2021 20:42:52 -0500 Subject: [PATCH] run updated black --- tools/mpy_ld.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tools/mpy_ld.py b/tools/mpy_ld.py index b125febd61..9c6424690b 100755 --- a/tools/mpy_ld.py +++ b/tools/mpy_ld.py @@ -908,7 +908,13 @@ def build_mpy(env, entry_offset, fmpy, native_qstr_vals, native_qstr_objs): # MPY: header out.write_bytes( bytearray( - [ord("C"), MPY_VERSION, env.arch.mpy_feature, MP_SMALL_INT_BITS, QSTR_WINDOW_SIZE,] + [ + ord("C"), + MPY_VERSION, + env.arch.mpy_feature, + MP_SMALL_INT_BITS, + QSTR_WINDOW_SIZE, + ] ) )