Laurent Lyaudet
Laurent Lyaudet
I have unfortunately no solution but in real code, I just encountered this problem like this approximately : ``` if a93: return "This is a loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong string" elif a92: return...
I choose feature request because I thought that maybe you would want to implement and benchmark some of my ideas.
For the annoying formatting, I have found a workaround : https://stackoverflow.com/questions/61896109/changing-max-length-on-a-charfield-for-a-modelform ``` class MyModelForm(forms.ModelForm): siret = FRSIRETField(max_length=17) ```
If you want to keep some arguments from the model, the workaround is more complicated (and ugly) : ``` class MyModelForm(forms.ModelForm): # siret = FRSIRETField(max_length=17) will not work with blank=True...
Hello, Thanks for your hard work :) In my case both do not work : ``` let kdbush = require('kdbush'); let geokdbush = require('geokdbush'); const geo_index = kdbush( ``` gives...
Hello :) I tried with very simple search_params on the model of what I can found here: https://typesense.org/docs/0.24.0/api/search.html#search-parameters But I did not see a troubleshooting section with respect to possible...
Hello @kishorenc :) Yes but there are still a few places with this generic 404. After debugging, the problem was that the index was not created in dev environment. I...
I forgot to say that there is also a minor issue with previous command: `yarn install` I had an error and to fix it I did: `rm -f yarn.lock` and...
Hi @tienthai0205 :) Thanks for wanting to solve it. Unfortunately, I am not among the maintainers of this repo and I do not have the rights to assign issues. Maybe...
I just add my voice in favor of this issue with the following example : ``` mnopqrstuvwxyza = ( set(stuvwxyz_abcdefghi[pqrstuvwxy].keys()) - set(stuvwxyz_abcdefghij[pqrstuvwxy].keys()) ) ``` black currently suggests this modification that...