Skip to content

Commit 3fb557d

Browse files
style: format code with autopep8
Format code with autopep8 This commit fixes the style issues introduced in b6755a4 according to the output from Autopep8. Details: None
1 parent cb5ad9e commit 3fb557d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

PDF_Merger/pdfmerger.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import PyPDF2
22

3+
34
def merge_pdfs(output_filename, input_files):
45
pdf_merger = PyPDF2.PdfMerger()
56

@@ -15,6 +16,7 @@ def merge_pdfs(output_filename, input_files):
1516

1617
print(f"PDFs merged successfully! Output file: {output_filename}")
1718

19+
1820
def main():
1921
print("PDF Merge Tool")
2022
print("Please enter the names of the two PDF files to merge:")
@@ -28,5 +30,6 @@ def main():
2830

2931
merge_pdfs(output_filename, input_files)
3032

33+
3134
if __name__ == "__main__":
3235
main()

0 commit comments

Comments
 (0)