bwo
bwo
@Matje1979 just name your plugin something else. For me, the proposed solution doesn't work, though.
How would using something different in my code help with the type inference guided by `query.pyi`? The problem is that `values()` is annotated as returning `_Queryset[...]`, rather than (as`filter()` does)...
This breaks `lsp-start-plain` for me, meaning it's very difficult to troubleshoot anything else. And the workaround isn't really available in that case.
I also get this.
the fix for this is absolutely trivial fwiw
the problem is ``` .map(|(k, v)| (VarName(k.to_lowercase()), Val(k, v))) ``` just make it ``` .map(|(k, v)| (VarName(k.clone()), Val(k, v))) ``` and it works. if people want lowercase field names they...