Sam Morgan
Sam Morgan
@extesy This happens to me as well in Chrome with any *.gifv, and the behavior still happens if I disable the autoplay policy: chrome://flags/#autoplay-policy (documented https://developers.google.com/web/updates/2017/09/autoplay-policy-changes) All other media types...
Just want to say, it would be game-changing to be able to set breakpoints and use VSCode debugging features in AREPL, especially when experimenting with large datasets.
Oh of course! I didn't make a PR for exactly this reason. I wouldn't want to see this changed without a bump to 3.x or a way to detect the...
The main issue appears to be lowercase timezone. ```python >>> from dateutil.parser import parse >>> parse("2021-04-19 09:00:42") datetime.datetime(2021, 4, 19, 9, 0, 42) >>> parse("2021-04-19 09:00:42 Z") datetime.datetime(2021, 4, 19,...
If you hit a Google Sheets limit, I'd suggest a more reactive than proactive approach. Catch the HTTP error, create a new client instance with a new service account, and...
Having the same error when running tests. Will investigate and publish logs here.
Looks like the issue was being caused by one of my data migrations that was pre-populating the database. I just had to add the following to the migration dependencies list:...
My two cents: I'm not fond of adding an additional layer of abstraction to the Stripe Python client. These are already features that exist in that client, and adding this...
I personally don't think a library should be handling this. While it's certainly common and good to do this, the library shouldn't necessarily be implementing this for the user. That...
I'm having this same exact issue specifically because I have a data migration that adds `Site` records. I don't actually understand why data migrations aren't run before every test, or...