diff --git a/codelabs/functions/python_powered/main.py b/codelabs/functions/python_powered/main.py index 1bb129c2e6ff..e5289f9f2f45 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" + )