Added the missing is_found = True in the __uri_set method of the Pagination utility.

This commit is contained in:
依瑪貓 2023-02-04 11:21:22 +08:00
parent b9cecf343a
commit 1326d9538c

View File

@ -276,6 +276,7 @@ class Pagination(t.Generic[T]):
params = params[:i] + params[i + 1:]
continue
params[i] = (name, value)
is_found = True
i = i + 1
parts: list[str] = list(uri_p)