From e1a4018323430db23408b0c82a41d48e6be7c379 Mon Sep 17 00:00:00 2001 From: Alix Hamilton Date: Wed, 8 Aug 2018 10:26:52 -0700 Subject: [PATCH] Remove unused region tag --- codelabs/flex_and_vision/main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/codelabs/flex_and_vision/main.py b/codelabs/flex_and_vision/main.py index 573f6d555bf..54242480c76 100644 --- a/codelabs/flex_and_vision/main.py +++ b/codelabs/flex_and_vision/main.py @@ -12,7 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# [START app] from datetime import datetime import logging import os @@ -127,4 +126,3 @@ def server_error(e): # This is used when running locally. Gunicorn is used to run the # application on Google App Engine. See entrypoint in app.yaml. app.run(host='127.0.0.1', port=8080, debug=True) -# [END app]