Thomas
Thomas
First off, thank you for this awesome image viewer. I was a frustrated user of gwenview, now I'm a happy user of qimgv. I have a suggestion: In version 1.0.2...
I've read https://github.com/sqlalchemy/sqlalchemy/issues/3989 but this seems unrelated. When defining a `ForeignKey` on a SQLAlchemy model, if the referenced column is given as a string (`{table_name}.{column_name}`) and the `Base.metadata` has been...
Hi, Currently (python 3.10.6 & 3.11.0): ```python from pathlib import Path p = Path('/var/log/../opt') p.is_relative_to('/var/log') >>> True p = p.resolve() p.is_relative_to('/var/log') >>> False ``` Once you know `is_relative_to` uses `relative_to`,...
```shell $ rsync --version rsync version 3.4.1 protocol version 32 ``` I was trying to write a script that parses rsync's output and doesn't break on a different locale. I...
I have a clip which outputs this info: ``` ffmpeg -i "/home/myuser/videos/test.mp4" ffmpeg version n7.1 Copyright (c) 2000-2024 the FFmpeg developers built with gcc 14.2.1 (GCC) 20240910 configuration: --prefix=/usr --disable-debug...
**Bug Report** **To Reproduce** - Create an `app.py` file with this inside: ```python from __future__ import annotations from typing import Protocol # PROTOCOL class ServiceProto(Protocol): @property def value(self) -> int:...