Jonathan Plasse
Jonathan Plasse
Hello, I want to use an OpenPilot Revolution as flight controller and I saw that OPLink is integrated in it. So, is OPLink supported?
Close #61
Close #105
- [ ] Fix - [x] It fixes when - [x] `import sys` - [x] `import sys as sys2` - [x] ~`import sys.exit`~ does not work - [x] `from sys...
- [x] Set literals - [x] Dictionary comprehensions - [x] use `datetime.UTC` alias - [x] Format Specifiers - [x] printf-style string formatting - [x] Unicode literals - [x] Invalid escape...
`exit()` is not a built-in function and is only defined if the site module is imported during Python's initialization (which, for example, can be disabled with `-S` option passed to...
`isort` sorting order is ```python from ..a import a from ..b import a from .a import a from .b import a ``` `ruff` sorting order is ```python from .a import...
# [`flake8-noqa`](https://pypi.org/project/flake8-noqa/) ## Error codes - [x] `NQA001` "#noqa" must have a single space after the hash, e.g. "# noqa" - [x] `NQA002` "# noqa X000" must have a colon,...
# [`flake8-pyi`](https://pypi.org/project/flake8-pyi/) ## Error codes - [ ] `Y001` Names of TypeVars, ParamSpecs and TypeVarTuples in stubs should usually start with _. This makes sure you don't accidentally expose names...