mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-09-24 13:07:00 +03:00
Removed unused split
This commit is contained in:
parent
31eee6e5f7
commit
57a5f76e6d
|
@ -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()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user