John Carter
John Carter
Interesting, this is because of this, in `django.forms.widgets.Select` ```python def use_required_attribute(self, initial): """ Don't render 'required' if the first has a value, as that's invalid HTML. """ use_required_attribute = super().use_required_attribute(initial)...
@chriszuckerberg , @dzjr which model of catflap do you have? If it's the new "Cat Door Connect" (https://www.surepetcare.com/en-nz/pet-doors/microchip-cat-flap-connect), as opposed to the original, larger "Pet Door Connect" (https://www.surepetcare.com/en-nz/pet-doors/microchip-pet-door-connect), the current...
Yeah that's fine, I thought I'd put it up and see if you guys were ok with it since black is becoming a very popular formatter for python. I won't...
My use case for this is: One of the endpoints I work with returns a list of data in arbitrary order - I'd like to sort that in `before_record_response` to...
I haven't tried this with Mypy, but this will get the case of `p = PersonFactory()` to type hint correctly in Pycharm: ``` class PersonFactory(factory.Factory): class Meta: model = Person...
Added #958 for a special case (probably would need a 3rd CurrencyAmountField class to support).
Yeah, I'm happy for us to move towards storing cents instead of decimal dollars. So for now, shall we say that all new fields should be in cents (with comments...
Can you add the exception and ideally the json of the event that's causing this? You can find both in djstripe admin webhook events.
I think it's a variant of #967 - legacy "card_" -type payment methods aren't fully supported, they're deleted on removal, so payment method retrieve fails afterwards. I'll look at if...
Hi yeah good point there's not currently an exposed method to do that. But yeah if you copy the `if set_default` part of add_payment_method that should do what you want....