From d2d8ab3231b199c8392603ee5aa7d38bc5bc65fc Mon Sep 17 00:00:00 2001
From: Dewranga Bandara <126384851+Dewranga-Bandara@users.noreply.github.com>
Date: Sun, 24 Dec 2023 21:30:31 +0530
Subject: [PATCH 1/2] Update app.py
---
app.py | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/app.py b/app.py
index 6ff05a4..bfa8b00 100644
--- a/app.py
+++ b/app.py
@@ -1,13 +1,8 @@
from flask import Flask
-
app = Flask("My Flask Application")
-
-
@app.route("/")
def hello():
- return "
Hello World!
"
-
-
+ return "My First Hello World!
"
if __name__=="__main__":
app.run(debug=True)
# When no port is specified, starts at default port 5000
From 721bbe5d605120a9003a43461a65a6b87ea6697f Mon Sep 17 00:00:00 2001
From: Dewranga-Bandara
Date: Tue, 2 Jan 2024 07:52:08 +0000
Subject: [PATCH 2/2] Update app.py
---
app.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/app.py b/app.py
index bfa8b00..eb5e7f9 100644
--- a/app.py
+++ b/app.py
@@ -6,3 +6,4 @@ def hello():
if __name__=="__main__":
app.run(debug=True)
# When no port is specified, starts at default port 5000
+