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: David Lechner <david@pybricks.com>
pull/7498/head
David Lechner 2021-07-06 18:18:57 -05:00
rodzic c1f74b3005
commit cd506d6220
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -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")