Skip to content

Commit

Permalink
tests/cpydiff/modules_struct_whitespace_in_format: Run black.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
dlech committed Jul 6, 2021
1 parent c1f74b3 commit cd506d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/cpydiff/modules_struct_whitespace_in_format.py
Expand Up @@ -7,7 +7,7 @@
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")

0 comments on commit cd506d6

Please sign in to comment.