From 32347897eff3c639083330ebecf74f9c5ef113a0 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Wed, 6 Mar 2024 15:56:17 +0000 Subject: [PATCH] Unquote a type hint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com> --- src/textual/widgets/_input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textual/widgets/_input.py b/src/textual/widgets/_input.py index b9d217142c..0d3149f2d3 100644 --- a/src/textual/widgets/_input.py +++ b/src/textual/widgets/_input.py @@ -52,7 +52,7 @@ def __init__(self, input: Input, cursor_visible: bool) -> None: def __rich_console__( self, console: "Console", options: "ConsoleOptions" - ) -> "RichRenderResult": + ) -> RichRenderResult: input = self.input result = input._value width = input.content_size.width