Skip to content

Commit

Permalink
remove builder
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Feb 28, 2025
1 parent bf70294 commit 9684fee
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mod tile;

use pyo3::prelude::*;

use crate::decoder::{PyDecoderRegistry, PyDecoderRegistryBuilder};
use crate::decoder::PyDecoderRegistry;
use crate::geo::PyGeoKeyDirectory;
use crate::ifd::PyImageFileDirectory;
use crate::thread_pool::PyThreadPool;
Expand Down Expand Up @@ -49,7 +49,6 @@ fn _async_tiff(py: Python, m: &Bound<PyModule>) -> PyResult<()> {

m.add_wrapped(wrap_pyfunction!(___version))?;
m.add_class::<PyDecoderRegistry>()?;
m.add_class::<PyDecoderRegistryBuilder>()?;
m.add_class::<PyGeoKeyDirectory>()?;
m.add_class::<PyImageFileDirectory>()?;
m.add_class::<PyThreadPool>()?;
Expand Down

0 comments on commit 9684fee

Please sign in to comment.