wikiped
wikiped
The `vendor` folder is not part of repository therefore only available when you download zip file from [releases page](https://github.com/seblucas/cops/releases). If you clone repository or download `master.zip` as suggested in `README.md`...
Another point that deserves to be added to the list: - [Windows-only] DO NOT use `Start-Process` with `-Verb RunAs` when you want to capture StandardOutput / StandardError from elevated process...
Thank you @mklement0 for updating the list. I was struggling with `System.Diagnostics.Process` to get it working and do realize now that it won't help either. There is basically no way...
I would suggest to change the title to something like: How to use `Attribute` in type annotation and fix error: 'type' object is not subscriptable This would help pin point...
pyright's dev [point of view](https://github.com/microsoft/pyright/issues/4193#issuecomment-1314730952)
On the page you linked there is an [answer](https://superuser.com/a/1715276) that outlines the reasons why this odd behavior you noticed is happening. This is a WSL quirk, that this module cannot...
If `install.cache` is `false` in config - then no errors are appearing. But with cache enabled (and therefore symlinks being used) I am not sure how it would be possible...
@frostming Thank you very much for fixing this! No errors with `pdm add tables` and all `.dll` files are being symlinked properly now.
`is_decimal` is using regex pattern which matches empty string and therefore returns False Positive result. Adding two lines to `is_decimal` before existing `return ...`: ```python if not value: return False...