Matthias Schoettle
Matthias Schoettle
> > So it seems Django/DRF fields are detected as Marshmallow fields, when they should not. > > So a simple workaround is getting rid of the Marshmallow field detector...
Thanks a lot, @gabriel-v! I had briefly looked at your repos to see if I can find where you used it but missed that one. That was very helpful and...
> Hello everyone! The [new handler](https://mkdocstrings.github.io/handlers/overview/#about-the-python-handlers) is able to visit the code using its AST instead of executing and introspecting it. I believe this would solve all these `AttributeError` and...
Thanks for your detailed response! > > would this new handler/griffe be able to extract comments on constants that are above the declaration and prefixed with #:? > > We're...
Sorry, my bad :) I made this assumption because [Sphinx supports](https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#directive-autofunction) using `#:`. You are right, it also supports the docstring after.
@jieter: Is there any way we could add support for this into `django_tables2`? I've since started using this in another project where developers end up having to redefine columns for...
> For others stumbling upon this ticket, this fix only solves the root view being visible to unauthenticated users. That's what this ticket is about :) > An that endpoints...
There is also this package: https://github.com/awelzel/flake8-gl-codeclimate (the GitLab code quality report is a subset of the code climate spec)
I am running into this problem when using [`django-modeltranslation`](https://django-modeltranslation.readthedocs.io/en/latest/). `type(Model.objects)` returns ``. Is there any workaround that I could do or is this something that would need to be fixed...
That might be possible. Or somehow excluding those tests via `@pytest.mark.skipif` when running with `--reuse-db`. In either case, do you know which part of this plugin could cause this? It...