James
James
I hope this doesn't die, what a great project. A few thoughts: It's probably quite difficult to find people who: - are highly experienced in rx, - and are highly...
> ... What fixed the desync for me was to use .wav files ... For me, .mp3 files were misaligned, .wav files sounded all crinkly, .ogg (ogg vorbis) is what...
PEP728 is now [accepted](https://discuss.python.org/t/pep-728-typeddict-with-typed-extra-items/45443/159)
Yeah, I raised this issue because I've got type guards with `issubclass()`. ```py def foo(value: type[ClassA] | type[ClassB]): match value: case a if issubclass(value, ClassA): # `a` is still type[ClassA]...
There's existing logic to raise an error explaining that users should only install the sync api or the async one, not both -- but the logic doesn't seem to trigger...