We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5487c3a commit caa423cCopy full SHA for caa423c
python/src/lib.rs
@@ -17,6 +17,7 @@ use crate::geo::PyGeoKeyDirectory;
17
use crate::ifd::PyImageFileDirectory;
18
use crate::thread_pool::PyThreadPool;
19
use crate::tiff::PyTIFF;
20
+use crate::enums::PyEndianness;
21
22
const VERSION: &str = env!("CARGO_PKG_VERSION");
23
@@ -50,6 +51,7 @@ fn _async_tiff(py: Python, m: &Bound<PyModule>) -> PyResult<()> {
50
51
check_debug_build(py)?;
52
53
m.add_wrapped(wrap_pyfunction!(___version))?;
54
+ m.add_class::<PyEndianness>()?;
55
m.add_class::<PyDecoderRegistry>()?;
56
m.add_class::<PyGeoKeyDirectory>()?;
57
m.add_class::<PyImageFileDirectory>()?;
0 commit comments