Thomas

Results 14 comments of Thomas

I'll look into it. I'll try to setup a proper dev env for SQLAlchemy and get back to you ;)

Same for me, Manjaro/KDE on kernel 5.4 LTS, Clementine 1.4rc2. It would do it on previous kernels and previous versions of Clementine though but I never bothered with it because...

udisks2 version 2.9.4 linux 5.4.224-1-MANJARO I have a similar log when I plug-in a 20TB Western Digital Elements external HDD: ``` udisksd[1667]: Error probing device: Error sending ATA command IDENTIFY...

As mentioned by nick4u, this would be a great feature for SQLAlchemy, and I'll add Django to the list: ```python result = ( SomeModel.objects .filter(...) .annotate(...) .prefetch_related(...) .order_by(...) ) ```...

I'll add my vote to this. I'm currently using `yt-dlp --embed-subs --embed-thumbnail --embed-metadata --embed-chapters --embed-info-json` and this is the resulting logs: ``` yt-dlp --embed-subs --embed-thumbnail --embed-metadata --embed-chapters --embed-info-json https://www.youtube.com/watch?v=5xEi8qg266g [youtube]...

Same problem on Arch + Plasma + Lapce 0.4.0. I was able to circumvent it by `Ctrl+-` 3 times, but that setting is reset after a restart, so I have...

> > 1. activate your venv in a terminal > > 2. start lapce in the same terminal > > Do we think this is the proper way to do...

Probably a precision error when converting to a Python float: https://magicstack.github.io/asyncpg/current/usage.html#id3 Try casting to decimal in your query, see if it changes. On a side-note, though related if I understand...

Just hit a similar problem. ```python from __future__ import annotations from typing import Protocol # PROTOCOL class ServiceProto(Protocol): @property def value(self) -> int: ... # DESCRIPTOR class Descriptor: def __get__(self,...

Same for me with this simple code (no inheritance): ```python class Foo: def __init__(self, bar: str) -> None: self.bar = bar # Type annotation for attribute `bar` is required because...