T. Franzel

Results 315 comments of T. Franzel

Hi y'all, the reason I have not approached this is because python packaging is fickle. Anybody that has ever messed with `include_package_data` and `MANIFEST.in` probably knows this all to well....

First of all I would like to highlight that the information extraction is apparently working better than anticipated 🤣 This issue has not come up yet before. It was assumed...

> I could override the problematic fields in serializers and add empty help_text or use extend_schema yes that would be too cumbersome. btw, model fields `help_text` will not go through...

Hi, this is highly unusual. I'm not even sure how it is possible that line 22 produces an error. By definition the `if` is safe even if the variable is...

Hi, you have a legitimate ask here. However, I don't think this is possible with OpenAPI. It just does not have the dynamic capabilities you need for this kind of...

HTTP standard strongly discourages bodies on DELETE requests. You could say it is undefined behavior. They are furthermore invalid in OpenAPI 3.0.x. That constraint was loosened with 3.1, but we...

Hi! So I skimmed over the other issue and I'm not sure this is an improvement here. What exactly do we fix here and what do we gain from this...

I get your point now, but I'm not entirely convinced that everybody wants to have it that way. Actually DRF has a dedicated feature flag for this question: https://www.django-rest-framework.org/api-guide/settings/#coerce_decimal_to_string Maybe...

Due to the inherent complexities and generic nature of DRF error handling, we cannot provide that feature in a reasonable manner. If you want to have that information in the...

No, because permission classes would be only a part of the solution. You can however, save the common stuff and e.g. reuse the list of responses for example. People also...