From 7cecd41f5840ed91738dd79b64a08196d9dd1878 Mon Sep 17 00:00:00 2001 From: Yan Yan Date: Sun, 5 Nov 2023 20:44:47 -0500 Subject: [PATCH] Changed import statement in server/common/rest.py to be url.parse instead of weurkzeug --- server/common/rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/common/rest.py b/server/common/rest.py index e7ff4114c..15656dd6a 100644 --- a/server/common/rest.py +++ b/server/common/rest.py @@ -6,7 +6,7 @@ import json from flask import make_response, jsonify, current_app, abort -from werkzeug.urls import url_unquote +from urllib.parse import quote as url_unquote from server.common.config.client_config import get_client_config from server.common.constants import Axis, DiffExpMode, JSON_NaN_to_num_warning_msg