Skip to content

Commit 1057fa7

Browse files
committed
cleanup
1 parent 0a0d812 commit 1057fa7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/substore.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use pyo3::exceptions::{PyRuntimeError, PyValueError};
22
use pyo3::prelude::*;
33
use pyo3::pyclass::CompareOp;
4-
use pyo3::types::*;
54
use std::borrow::Cow;
65
use std::ops::FnOnce;
76
use std::sync::{Arc, RwLock};
@@ -24,6 +23,7 @@ pub(crate) struct PyAnnotationSubStore {
2423
pub(crate) store: Arc<RwLock<AnnotationStore>>,
2524
}
2625

26+
/*
2727
impl PyAnnotationSubStore {
2828
pub(crate) fn new(
2929
handle: AnnotationSubStoreHandle,
@@ -40,6 +40,7 @@ impl PyAnnotationSubStore {
4040
Self::new(handle, store).into_py(py).into_ref(py)
4141
}
4242
}
43+
*/
4344

4445
#[pymethods]
4546
impl PyAnnotationSubStore {

0 commit comments

Comments
 (0)