From f6be9157ce6d04777140f9d25148dc1e6cae7bb8 Mon Sep 17 00:00:00 2001 From: Darren Burns Date: Wed, 14 Aug 2024 14:04:41 +0100 Subject: [PATCH] Remove debugging print --- examples/download_screenshot.py | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/download_screenshot.py b/examples/download_screenshot.py index 209730a..cbe5a5b 100644 --- a/examples/download_screenshot.py +++ b/examples/download_screenshot.py @@ -18,7 +18,6 @@ class ScreenshotApp(App[None]): def action_deliver_screenshot(self) -> None: screenshot_string = self.export_screenshot() string_io = io.StringIO(screenshot_string) - print(isinstance(string_io, io.TextIOBase)) self.deliver_text(string_io)