Nicholas Pipitone
Nicholas Pipitone
If anyone else is running into this error, you can pip install `git+https://github.com/shobrook/openlimit.git@ae77eb7d41f537ce1e68f78031f4b7197ddf29f4#egg=openlimit` , which also works in requirements.in and requirements.txt
Confirm the same issue on VSCode and vim for me. Example file: `test.py` ``` class Test(BaseModel): id: str test: str t = Test( id="Hey", test="yo", ) ``` Startup: https://pastebin.com/RVYHKwDE Code...
@chrisbra Hello! Yes, this does fix https://github.com/vim/vim/issues/15631 , updated the PR body to auto-close the issue on merge. I've emailed the maintainer, I'll let you know if/when I get an...
@zvezdan Thanks for the response! I would consider things like soft keywords to be the job of an LSP or Treesitter, since requires parsing the entire abstract syntax tree to...
Can we please merge this? For users to enforce MD5 hash matching, this PR is really a pure gain with no downsides.
@DetachHead Hm, good question. In the example if you gave both are fine. But, if the list is long (e.g. 5-6+) items, I think it would have to be the...
Edge-case for some users: -> I know that some people do actually like doing `if var:` for checking if a collection is non-empty. IMO even if people want to do...
Can I know what's holding this PR back? I can try to help contribute; it was rebased but never merged. There's no solution or alternative to this functionality not existing;...
Why would the whole p_image have to be converted? If the src_rect is 10x10, but the src_image is 2048x2048, can't it be possible to just copy and convert the data...
Calling `to_batches()` at any point in time seems to break vector search for the remainder of the program ```python import lancedb import numpy as np import time db = lancedb.connect("../ml/data/lancedb")...