Kiyoon Kim
Kiyoon Kim
Does this happen if you set `auto_download_ipynb=false`? I think that you have a file test.ju.py in a folder, and Jupyter is running on the same directory editing test.ipynb, and when...
If you installed firefox with snap on Ubuntu, make sure you remove it and try the ppa version. I asked ChatGPT and maybe this could work: `unset http_proxy https_proxy HTTP_PROXY...
If this isn't possible, it would be good to make it possible to ignore the await error by assigning it a report code.
Detecting `# %%` might be too erroneous since a normal python file could contain it for some reason.. I'm not so sure if all third party libraries I installed will...
> do you mean it should be a more specific rule? i agree, but i haven't thought of a way to split errors up into separate rules in such a...
I also can't get the files inside a symlinked dir on Windows with eza. I created the symlink with the PowerShell command. ```powershell New-Item -Path .\aaaa -ItemType SymbolicLink -Value .\.config\aaaa...
@lolpack Thank you! I'm using Neovim and I can see some colours, although not all of them :) Specifically, the colours on the function call's keyword arguments are missing. ```python...
Test is very simple. As in the issue, ```python from __future__ import annotations from dataclasses import dataclass @dataclass class VersionConfig: test_dir: str | None = None verbose: bool = False...
> Thanks! Can you please add a code comment explaining what this does? Done! > After that then we can work on adding a test together! Sure, let's add the...
Tests have been added. You may run the test with and without the change and see what happens!