Mathieu Virbel
Mathieu Virbel
The previous implementation was using playAtTime_, but 100% sure it was not working as playAtTime_ schedules the audio to play at a specific time, not to seek within the current...
**Pyprland version** 2.4.0 **Describe the bug** In a setup with 2 monitors, each monitor have its hyprland workspace. If you do `pypr layout_center toggle`, the current selected window will be...
Here is an implementation for #38 (not yet tested)
**Context** We are using a CI/CD pipeline attached to the "production" branch on GitHub. Every push to this branch triggers a build and subsequently pushes the image to our registry....
Using taskiq 0.11.7 and taskiq-redis 1.0.2, i have this deprecation warning showing up: ``` /.venv/lib/python3.10/site-packages/taskiq_redis/redis_broker.py:49: TaskiqDeprecationWarning: Setting result backend with constructor is deprecated. Please use `with_result_backend` instead. ``` The code...
This pull request aims to resolve an issue with using VCR.py in conjunction with io-like data. Let's have a look at this example: ```python @vcr.use_cassette("issue_vcr_aiohttp.yaml") def test(): test = io.BytesIO(b"hello")...
When using aiohttp and sending a open file as a body (here as `io.BytesIO`), when using VCR.py, the initial Request construction is [consuming the body](https://github.com/kevin1024/vcrpy/blob/master/vcr/request.py#L22), so when aiohttp is getting...