diff options
| author | David Lechner <david@pybricks.com> | 2021-07-06 18:18:57 -0500 |
|---|---|---|
| committer | David Lechner <david@pybricks.com> | 2021-07-06 18:19:55 -0500 |
| commit | cd506d6220d322a80d634fcb00d35d7d1aa11989 (patch) | |
| tree | 17c11dca20b40e41b4e885a757e465dfa8723e4d | |
| parent | c1f74b300548912f92edb4ae004dc486e0b7c8bf (diff) | |
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>
| -rw-r--r-- | tests/cpydiff/modules_struct_whitespace_in_format.py | 6 |
1 files 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") |
