Skip to content

Commit cac5359

Browse files
committed
Format with Black
1 parent 9df756d commit cac5359

File tree

1 file changed

+3
-1
lines changed
  • tests/data/packages/BrokenEmitsUTF8

1 file changed

+3
-1
lines changed

tests/data/packages/BrokenEmitsUTF8/setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ class FakeError(Exception):
88

99
if sys.argv[1] in ("install", "bdist_wheel"):
1010
if hasattr(sys.stdout, "buffer"):
11-
sys.stdout.buffer.write("\nThis package prints out UTF-8 stuff like:\n".encode())
11+
sys.stdout.buffer.write(
12+
"\nThis package prints out UTF-8 stuff like:\n".encode()
13+
)
1214
sys.stdout.buffer.write("* return type of ‘main’ is not ‘int’\n".encode())
1315
sys.stdout.buffer.write(
1416
"* Björk Guðmundsdóttir [ˈpjœr̥k ˈkvʏðmʏntsˌtoʊhtɪr]".encode()

0 commit comments

Comments
 (0)