From 6e109b0158fa2467367e5852cfc218c187c2caf5 Mon Sep 17 00:00:00 2001 From: Juhi Bhatnagar Date: Wed, 24 Oct 2018 10:30:51 -0500 Subject: [PATCH] Added documentation to __init__.py --- hello_app/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hello_app/__init__.py b/hello_app/__init__.py index cf1f4140e..eb82cbf69 100644 --- a/hello_app/__init__.py +++ b/hello_app/__init__.py @@ -1,2 +1,2 @@ -from flask import Flask -app = Flask(__name__) +from flask import Flask # Import the Flask class +app = Flask(__name__) # Create an instance of the class for our use