mo.pdf(src=pdf_file)
assigned to a variable which you state at the end of the cell block for it to be rendered as the output.actual = None with open("2104.00282v4.pdf", "rb") as file: actual = mo.pdf(src=file) actual
with open
block doesn't return anything, the documentation should probably be updated to reflect thatwith
blocks return nothing (null?)...