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 caa423c commit 9b17ba4Copy full SHA for 9b17ba4
python/src/lib.rs
@@ -13,11 +13,11 @@ mod value;
13
use pyo3::prelude::*;
14
15
use crate::decoder::PyDecoderRegistry;
16
+use crate::enums::PyEndianness;
17
use crate::geo::PyGeoKeyDirectory;
18
use crate::ifd::PyImageFileDirectory;
19
use crate::thread_pool::PyThreadPool;
20
use crate::tiff::PyTIFF;
-use crate::enums::PyEndianness;
21
22
const VERSION: &str = env!("CARGO_PKG_VERSION");
23
src/ifd.rs
@@ -402,7 +402,6 @@ impl ImageFileDirectory {
402
})
403
}
404
405
-
406
/// The Endianness of the file
407
pub fn endianness(&self) -> Endianness {
408
self.endianness
0 commit comments