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 0a0d812 commit 1057fa7Copy full SHA for 1057fa7
src/substore.rs
@@ -1,7 +1,6 @@
1
use pyo3::exceptions::{PyRuntimeError, PyValueError};
2
use pyo3::prelude::*;
3
use pyo3::pyclass::CompareOp;
4
-use pyo3::types::*;
5
use std::borrow::Cow;
6
use std::ops::FnOnce;
7
use std::sync::{Arc, RwLock};
@@ -24,6 +23,7 @@ pub(crate) struct PyAnnotationSubStore {
24
23
pub(crate) store: Arc<RwLock<AnnotationStore>>,
25
}
26
+/*
27
impl PyAnnotationSubStore {
28
pub(crate) fn new(
29
handle: AnnotationSubStoreHandle,
@@ -40,6 +40,7 @@ impl PyAnnotationSubStore {
40
Self::new(handle, store).into_py(py).into_ref(py)
41
42
43
+*/
44
45
#[pymethods]
46
0 commit comments