From 775548443f37ce1026eea2a610a0a570448254c9 Mon Sep 17 00:00:00 2001 From: null Date: Mon, 5 Feb 2024 09:08:12 +0100 Subject: [PATCH] testing git hook --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 873857b..69f4682 100644 --- a/app.py +++ b/app.py @@ -4,7 +4,7 @@ app = Flask(__name__) @app.route('/') def hello_world(): - return 'Hello, World!' + return 'Hallo Welt!' if __name__ == '__main__': app.run(host='0.0.0.0', port=8080)