Removed unused split

This commit is contained in:
Andrew Murray 2025-09-02 21:09:07 +10:00
parent 31eee6e5f7
commit 57a5f76e6d

View File

@ -129,7 +129,7 @@ class ImageFont:
if file.readline() != b"PILfont\n": if file.readline() != b"PILfont\n":
msg = "Not a PILfont file" msg = "Not a PILfont file"
raise SyntaxError(msg) raise SyntaxError(msg)
file.readline().split(b";") file.readline()
self.info = [] # FIXME: should be a dictionary self.info = [] # FIXME: should be a dictionary
while True: while True:
s = file.readline() s = file.readline()