Remove debugging print

This commit is contained in:
Darren Burns
2024-08-14 14:04:41 +01:00
parent f7dcadc544
commit f6be9157ce

View File

@@ -18,7 +18,6 @@ class ScreenshotApp(App[None]):
def action_deliver_screenshot(self) -> None: def action_deliver_screenshot(self) -> None:
screenshot_string = self.export_screenshot() screenshot_string = self.export_screenshot()
string_io = io.StringIO(screenshot_string) string_io = io.StringIO(screenshot_string)
print(isinstance(string_io, io.TextIOBase))
self.deliver_text(string_io) self.deliver_text(string_io)