Removed pub on method that does not need to be pub

This commit is contained in:
Anne de Jong 2024-10-08 11:54:00 +02:00
parent 58093dd5cd
commit b7c2f9c3b8

View File

@ -66,7 +66,7 @@ impl StreamMetaData {
#[cfg_attr(feature = "python-bindings", pymethods)] #[cfg_attr(feature = "python-bindings", pymethods)]
impl StreamMetaData { impl StreamMetaData {
#[getter] #[getter]
pub fn channelInfo(&self) -> Vec<DaqChannel> { fn channelInfo(&self) -> Vec<DaqChannel> {
self.channelInfo.clone() self.channelInfo.clone()
} }
#[getter] #[getter]