From c36ac2da89dc7649e8098b5d572f6c75bb62de09 Mon Sep 17 00:00:00 2001 From: Leah Cole Date: Mon, 30 Dec 2019 09:45:14 -0800 Subject: [PATCH] fix: run lint and black on failing sample --- codelabs/functions/python_powered/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/codelabs/functions/python_powered/main.py b/codelabs/functions/python_powered/main.py index 1bb129c2e6f..e5289f9f2f4 100644 --- a/codelabs/functions/python_powered/main.py +++ b/codelabs/functions/python_powered/main.py @@ -57,4 +57,6 @@ def python_powered(request): Returns: The response file, a JPG image that says "Python Powered" """ - return flask.send_from_directory(os.getcwd(), "python_powered.jpg", mimetype="image/jpg") + return flask.send_from_directory( + os.getcwd(), "python_powered.jpg", mimetype="image/jpg" + )