Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
pbeazer committed Jan 19, 2024
1 parent 829e37d commit 3ba6d04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions literary_clock.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__':
Expand Down

0 comments on commit 3ba6d04

Please sign in to comment.