Skip to content

Commit ee922f3

Browse files
authored
MAINT: Modify comments of filters (#3426)
1 parent 71a1bd1 commit ee922f3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pypdf/filters.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@
2727

2828

2929
"""
30-
Implementation of stream filters for PDF.
30+
Implementation of stream filters; §7.4 Filters of the PDF 2.0 specification.
3131
32-
See TABLE H.1 Abbreviations for standard filter names
32+
§8.9.7 Inline images of the PDF 2.0 specification has abbreviations that can be
33+
used for the names of filters in an inline image object.
3334
"""
3435
__author__ = "Mathieu Fenniak"
3536
__author_email__ = "[email protected]"
@@ -525,13 +526,12 @@ def decode(
525526
526527
Args:
527528
data: text to decode.
528-
decode_parms: a dictionary of parameter values.
529+
decode_parms: this filter does not use parameters.
529530
530531
Returns:
531532
decoded data.
532533
533534
"""
534-
# decode_parms: this filter does not use parameters
535535
return data
536536

537537

0 commit comments

Comments
 (0)