Skip to content

Commit d94723f

Browse files
authored
STY: Change elif to if (#3180)
1 parent 88a298a commit d94723f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pypdf/filters.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def decode(
298298
char = data[index : index + 1]
299299
if char == b">":
300300
break
301-
elif char.isspace():
301+
if char.isspace():
302302
index += 1
303303
continue
304304
hex_pair += char

0 commit comments

Comments
 (0)