fix: remove str from pyclass attribute for QueryParams

This commit is contained in:
Bakyt Niiazaliev 2025-07-07 22:56:00 +07:00
parent 3a0168b33d
commit 2f4317b5ce

View File

@ -31,7 +31,7 @@ fn urlencode(s: &str) -> String {
.collect()
}
#[pyclass(str)]
#[pyclass]
#[derive(Debug, Clone, Eq)]
pub struct QueryParams {
params: IndexMap<String, Vec<String>>,