From 75842227462602861c2f56c539c3dd4adf7d1486 Mon Sep 17 00:00:00 2001 From: June Tate-Gans Date: Tue, 26 Nov 2024 10:14:31 -0600 Subject: [PATCH] Update displaydevice.py --- g13gui/g13/displaydevice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/g13gui/g13/displaydevice.py b/g13gui/g13/displaydevice.py index 496cee9..4933db9 100644 --- a/g13gui/g13/displaydevice.py +++ b/g13gui/g13/displaydevice.py @@ -11,7 +11,7 @@ class DisplayMetrics(object): def ImageToLPBM(image): - #Simple function to convert a PIL Image into LPBM format. + """Simple function to convert a PIL Image into LPBM format""" # Ensure the image is in grayscale ('L') or monochrome ('1') mode image = image.convert('1') # Convert to monochrome (1-bit) if not already