Marti Raudsepp
Marti Raudsepp
Just keeping a list of known false positives for personal reference. Feel free to add comments here. Topy replaces: - [ ] `attribtue` -> `attributue` - both are incorrect :)...
Parsing the ruleset tag soup file with BeautifulSoup4 can consume half a second at every startup; see issue #5.
Hi! I'm one of the maintainers of the django-stubs project. I sense that there is significant duplication of effort between django-stubs and django-types. Our pace of development has picked up...
If you feel like it, let's get this one merged first before #339.
Closes #337.
I'm using `djangorestframework` along with `djangorestframework-stubs` for type checking. I noticed that `drf-nested-routers` does not currently have type hints, nor are there any "stubs" packages available. Would you be interested...
If I run Python's `compileall` on code of the `f5-sdk` Python package, I get the following SyntaxWarnings: ``` % python3 -m compileall iapp_parser.py Compiling 'iapp_parser.py'... iapp_parser.py:123: SyntaxWarning: "is" with a...
I'm not sure if you want this complexity, but I wanted to demonstrate what can be still improved. Because `NestedMixin` is declared as: ```python def __init__( self, parent_router: SimpleRouter |...
### systemd version the issue has been seen with 255.6-1-arch ### Used distribution Arch Linux ### Linux kernel version used 6.8.9-arch1-2 ### CPU architectures issue was seen on x86_64 ###...
Currently `ChoiceField(choices=[])` will get `{"type": "boolean"}` in schema. With this change, `type` wil be omitted from schema. Currently `ChoiceField(chocies=[], allow_blank=True)` will generate schema `{"type": "boolean", "enum": [""]}`, that's a bit...