Skip to content

Commit

Permalink
MAINT: Initialize PdfMerger with strict=False by default (#871)
Browse files Browse the repository at this point in the history
  • Loading branch information
pubpub-zz committed May 13, 2022
1 parent 0d01342 commit a9c31a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PyPDF2/merger.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class PdfMerger(object):
``True``).
"""

def __init__(self, strict=True, overwriteWarnings="deprecated"):
def __init__(self, strict=False, overwriteWarnings="deprecated"):
if overwriteWarnings != "deprecated":
warnings.warn(
"The `overwriteWarnings` argument to PdfReader will be removed with PyPDF2 2.0.0.",
Expand Down

0 comments on commit a9c31a4

Please sign in to comment.