From 7d76f945aea1551941a0915be9965d88a39da47c Mon Sep 17 00:00:00 2001 From: Morten Jagd Christensen Date: Fri, 19 Jul 2024 21:44:46 +0200 Subject: [PATCH] github actions --- src/z80io.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/z80io.py b/src/z80io.py index cc8dc4d..af0562a 100644 --- a/src/z80io.py +++ b/src/z80io.py @@ -5,7 +5,8 @@ # def isprintable(c): - return c >= 0x20 and c <= 0x7D + """True if character is printable ASCII""" + return 0x20 <= c <= 0x7D class IO: