You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that applying code fixes in neovim is off by one column.
For example, running sort imports on the following code:
```python
import json
import date
date
```
results in the following:
```python
iimport json
import date
ate
```
applying the this patch seems to solve the issue
0 commit comments