From 3ba6d0426a038da5f5059e6b0d5175fdf45015da Mon Sep 17 00:00:00 2001 From: Peter Beazer Date: Fri, 19 Jan 2024 10:14:59 -0500 Subject: [PATCH] c --- literary_clock.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/literary_clock.py b/literary_clock.py index 9d272b83..bff20f34 100644 --- a/literary_clock.py +++ b/literary_clock.py @@ -62,9 +62,9 @@ def main(): today = now.strftime('%a, %B, %d') dayFont = ImageFont.truetype('Literata72pt-Regular.ttf', 48) drawImage = ImageDraw.Draw(image) - drawImage.text((250, 10), today, font=dayFont, fill=0) - #drawImage.line([(0, 78), (800, 78)], fill=0, width=4) - drawImage.line([(225, 0), (225, 78)], fill=0, width=4) + drawImage.text((20, 10), today, font=dayFont, fill=0) + drawImage.line([(0, 78), (800, 78)], fill=0, width=4) + #drawImage.line([(225, 0), (225, 78)], fill=0, width=4) return image if __name__ == '__main__':