eddielu
eddielu
+1 I am experiencing this issue on Firefox only (not Chrome). Did anyone come up with any workarounds here?
Is this a recent change? When did DRF start adding UniqueTogetherValidator for ModelSerializer? Edit: I know it's broken now, but I'm wondering if this feature was always there or just...
Anyone know any workarounds for this? I use this throughout my project, and I'm hesitant to throw around a bunch of # type:ignore[attr-defined] everywhere.
Also, I'm curious what others have done when encountering this issue? Do you all just use type-ignore and move on?
What is the real solution to this issue? This makes dialog unusable :(
For me, even ``` class MyModelWithExtra(WithAnnotations[MyModel, MyModelExtra]): pass ``` doesn't work. I am running django-stubs==5.0.2 django-stubs-ext==5.0.4
Another example is django (especially DRF) custom views, where we need to keep a pk in the function parameter for DRF to work, but in reality, we use self.get_object() to...