PyPDF2 не пишет в ByesIO

#python-3.8 #pypdf2

Вопрос:

У меня есть следующий простой текст на python:

 io_bytes = BytesIO()
new_file = PyPDF2.PdfFileWriter()
new_file.addBlankPage(width=100, height=100)
new_file.addBlankPage(width=100, height=100)
page_count = new_file.getNumPages()
read_bytes = io_bytes.read()
 

Однако содержимое read_bytes = b''

И значение page_count = 2.

Почему io_bytes пуст?