From 4924fddbc427d1d52a827a9b3d8b80ca63300c10 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Tue, 10 Jun 2025 22:55:02 +0200 Subject: [PATCH] removed useless print statement --- src/routes/index.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/routes/index.py b/src/routes/index.py index 6ef63b3..b11f71d 100644 --- a/src/routes/index.py +++ b/src/routes/index.py @@ -7,7 +7,6 @@ router = Blueprint('index', __name__) @router.route('/') def welcome(): - print("hello") return current_app.send_static_file('index.html')