We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0355cf commit 37ebee3Copy full SHA for 37ebee3
sphinx_runpython/tools/img_export.py
@@ -61,8 +61,9 @@ def images2pdf(
61
convert(all_images, outputstream=st, with_pdfrw=False)
62
except TypeError as e:
63
raise TypeError(
64
- f"Unable to process container type {type(all_images)} and type {type(all_images[0])}."
65
- )
+ f"Unable to process container type {type(all_images)} "
+ f"and type {type(all_images[0])}."
66
+ ) from e
67
68
if close:
69
st.close()
0 commit comments