From a14db2d4df37989f9b0d5d7c275ee099e7b700f2 Mon Sep 17 00:00:00 2001 From: simonwoodworth Date: Mon, 18 Nov 2024 09:48:07 +0000 Subject: [PATCH] Updated to demonstrate pipeline. --- app.py | 4 ++-- requirements.txt | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/app.py b/app.py index da4ad37..e4cb289 100644 --- a/app.py +++ b/app.py @@ -8,8 +8,8 @@ @app.route('/') def hello_world(): # put application's code here - powerString = str(mymath.power(3,6)) - return f'Hello IS3313! The answer is: {powerString}' + powerString = str(mymath.power(2,8)) + return f'Hello IS3313 on a wet Monday morning. The answer is: {powerString}' if __name__ == '__main__': app.run() diff --git a/requirements.txt b/requirements.txt index 51f0a35..556807d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,5 +5,4 @@ itsdangerous==2.2.0 Jinja2==3.1.4 MarkupSafe==3.0.2 Werkzeug==3.1.3 -gunicorn -git-filter-repo +gunicorn \ No newline at end of file