Commit cd506d62 authored by David Lechner's avatar David Lechner

tests/cpydiff/modules_struct_whitespace_in_format: Run black.

This test snuck through without proper formatting and is causing CI for
other unrelated changes to fail.
Signed-off-by: default avatarDavid Lechner <david@pybricks.com>
parent c1f74b30
......@@ -7,7 +7,7 @@ workaround: Don't use spaces in format strings.
import struct
try:
print(struct.pack('b b', 1, 2))
print('Should have worked')
print(struct.pack("b b", 1, 2))
print("Should have worked")
except:
print('struct.error')
print("struct.error")
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment