Skip to content

Commit ce2ffaa

Browse files
committed
Formatting
1 parent 8d17c87 commit ce2ffaa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

go_capture/views.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ def capture(request):
1919
file = io.StringIO()
2020
make_sgf(file, black, white)
2121
file.seek(0)
22-
return FileResponse(file.read(), status=201, as_attachment=True, content_type='application/x-go-sgf')
22+
return FileResponse(
23+
file.read(),
24+
status=201,
25+
as_attachment=True,
26+
content_type='application/x-go-sgf'
27+
)
2328

2429

2530
@require_GET

0 commit comments

Comments
 (0)