Nathanael Burt

Results 7 comments of Nathanael Burt

+1. We've written our own custom media controls that don't have the fullscreen link but users can still access fullscreen mode by double clicking on the player. It would be...

I'm actually not expecting an exception to be thrown in the actual execution of the `after_transition`. While writing the `after_transition` callback I defined a new method so I expected the...

I think I might have a related issue I've been seeing. If unrelated, I can open up a separate one. I have some tests which are hanging and waiting indefinitely...

I'm running into this same issue when trying to upgrade urllib3 from 1.26.20 --> 2.4.0. A separate 3rd party library we have installed uses Pydantic 2.11. ``` pydantic_core._pydantic_core.ValidationError: 1 validation...

I'd second that a get_or_create method would be helpful. I ended up implementing my own method which calls `klaviyo.Profiles.get_profiles(filter=f'equals(email,"{email}")')` and if no profile is returned will call `klaviyo.Profiles.create_profile(data)`. Recently, we've...

@sanfordj our use case has been that we're trying to find or create a profile prior to sending events for them (viewed product, started checkout, placed order) so that we...