From cd506d6220d322a80d634fcb00d35d7d1aa11989 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Tue, 6 Jul 2021 18:18:57 -0500 Subject: [PATCH] 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 --- tests/cpydiff/modules_struct_whitespace_in_format.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/cpydiff/modules_struct_whitespace_in_format.py b/tests/cpydiff/modules_struct_whitespace_in_format.py index dd0f8b48f..a882b3856 100644 --- a/tests/cpydiff/modules_struct_whitespace_in_format.py +++ b/tests/cpydiff/modules_struct_whitespace_in_format.py @@ -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")