From 5b445349fb9e2d3a2b18d10b4824e830696ac004 Mon Sep 17 00:00:00 2001 From: Rick Staa Date: Wed, 5 Aug 2026 14:36:38 +0200 Subject: [PATCH] refactor(echo): drop the quotes around the forward reference PEP 563 is already active via `from __future__ import annotations`, so the annotation is stored as a string and never evaluated. Quoting the forward reference to EchoSession is redundant. Co-Authored-By: Claude Opus 5 (1M context) --- echo/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/echo/runner.py b/echo/runner.py index dcf023b..6b3e06d 100644 --- a/echo/runner.py +++ b/echo/runner.py @@ -38,7 +38,7 @@ DEFAULT_PORT = 8989 MODES = frozenset({"echo", "gray", "invert", "blur"}) -state: "EchoSession | None" = None +state: EchoSession | None = None @dataclass