From abeef87d71440a137bed08f594aea50b47422287 Mon Sep 17 00:00:00 2001 From: pika Date: Mon, 31 Mar 2025 18:06:50 +0200 Subject: [PATCH] fixed one thing by myself --- app/routes/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/api.py b/app/routes/api.py index 7609672..ffd1cdf 100644 --- a/app/routes/api.py +++ b/app/routes/api.py @@ -18,7 +18,7 @@ from flask_wtf import CSRFProtect import markdown from datetime import datetime from flask import flash -from app.utils.app_utils import validate_port_data +from app.utils.app_utils import is_port_in_use bp = Blueprint("api", __name__, url_prefix="/api") csrf = CSRFProtect()