Matthias Schoettle
Matthias Schoettle
I have the following scenario: ``` # models class A(models.Model): some_property = models.IntegerField('Some Property') def custom_method(self): ... custom_method.short_description = 'foo' ... class B(models.Model): someA = models.OneToOneField(...) # table class BTable(tables.Table):...
In one of my files I have an import line that with a recent commit exceeded the length of `79` (the [default line length](https://timothycrosley.github.io/isort/docs/configuration/options/#line-length) in `isort`). For some reason, in...
I noticed that when using `permissions.IsAuthenticated`, the `APIRootView` returns a `403`. However, when using `DjangoModelPermissions` this is not the case. It does show the root with all available endpoints. `DjangoModelPermissions.has_permission(...)`...
I use `drone-ssh` to execute a shell script on a server. This script has an abort trap and in that case exits with the error code: ```shell #!/bin/bash set -eu...
I am looking into a way to address #165 and noticed that the `request` is `None` in `_thread_locals`. This seems to be a bug (causing the extra work to retrieve...
I am trying to extract tables from a PDF with no lines, i.e., I am using the `stream` option. The table stretches over several pages with the header being repeated...
## Location within the Book * Chapter or Appendix: 13 * Section: 9 * Subsection: Hint: Page numbers change all the time. The best way to report an issue is...
## Location within the Book * Chapter or Appendix: 22 * Section: 3 * Subsection: 2 * Example: 22.9 ## Description This is a follow-up to #136. I am in...
## Greetings! Hello back! Thanks for this great book (and Cookiecutter Django)! ## Location within the Book * Chapter or Appendix: 5 * Section: 5.4 * Subsection: ## Description I...
## Location within the Book * Chapter or Appendix: 22 * Section: 2 * Subsection: 3 ## Description In Example 22.6 there are 3 model classes with a `OneToOneField` for...