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