Skip to content

Commit 57a5f76

Browse files
committed
Removed unused split
1 parent 31eee6e commit 57a5f76

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/PIL/ImageFont.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def _load_pilfont_data(self, file: IO[bytes], image: Image.Image) -> None:
129129
if file.readline() != b"PILfont\n":
130130
msg = "Not a PILfont file"
131131
raise SyntaxError(msg)
132-
file.readline().split(b";")
132+
file.readline()
133133
self.info = [] # FIXME: should be a dictionary
134134
while True:
135135
s = file.readline()

0 commit comments

Comments
 (0)