Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ requires-python = ">=3.14, <3.15"
dependencies = [
"pyside6>=6.10.2",
"packaging>=26.0",
"porringer>=0.2.1.dev80",
"porringer>=0.2.1.dev81",
"qasync>=0.28.0",
"velopack>=0.0.1444.dev49733",
"typer>=0.24.1",
Expand All @@ -30,7 +30,7 @@ build = [
]
lint = [
"ruff>=0.15.5",
"pyrefly>=0.55.0",
"pyrefly>=0.56.0",
]
test = [
"pytest>=9.0.2",
Expand Down
4 changes: 2 additions & 2 deletions synodic_client/application/screen/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import logging
import sys
import traceback
from collections.abc import Iterator
from collections.abc import Generator
from contextlib import contextmanager

from PySide6.QtCore import Qt, QUrl, Signal
Expand Down Expand Up @@ -334,7 +334,7 @@ def _persist(self, **changes: object) -> None:
self._store.update(**changes)

@contextmanager
def _block_signals(self) -> Iterator[None]:
def _block_signals(self) -> Generator[None]:
"""Temporarily block signals on all settings controls."""
widgets = (
self._channel_combo,
Expand Down
4 changes: 2 additions & 2 deletions synodic_client/subprocess_patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ def _inject_hidden_flags(kwargs: dict[str, Any]) -> None:
def _patch_popen() -> None:
_original_init = subprocess.Popen.__init__

def _patched_init(self: subprocess.Popen, *args: Any, **kwargs: Any) -> None: # type: ignore[type-arg]
def _patched_init(self: subprocess.Popen, *args: Any, **kwargs: Any) -> None:
_inject_hidden_flags(kwargs)
_original_init(self, *args, **kwargs)

subprocess.Popen.__init__ = _patched_init # type: ignore[method-assign]
subprocess.Popen.__init__ = _patched_init
Loading