From d25c89aae93d3a904f7d96ce02729063405f3946 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Fri, 8 Nov 2024 11:13:43 +0000 Subject: [PATCH] docstring --- src/textual/app.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/textual/app.py b/src/textual/app.py index f89d71610a..7ff28565f8 100644 --- a/src/textual/app.py +++ b/src/textual/app.py @@ -4463,4 +4463,7 @@ def _on_delivery_failed(self, event: events.DeliveryComplete) -> None: def _on_terminal_supports_in_band_window_resize( self, message: messages.TerminalSupportInBandWindowResize ) -> None: + """There isn't much we can do with this information currently, so + we will just log it. + """ self.log.debug(message)