Skip to content

Commit 9bec36e

Browse files
committed
Issue : apache#5408
1 parent 73c8feb commit 9bec36e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bindings/python/src/operator.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ impl Operator {
179179
/// # Notes
180180
///
181181
/// - Delete not existing error won't return errors.
182-
// pub fn delete(&self, path: &str) -> PyResult<()> {
183-
// self.core.delete(path).map_err(format_pyerr)
184-
// }
182+
pub fn delete(&self, path: &str) -> PyResult<()> {
183+
self.core.delete(path).map_err(format_pyerr)
184+
}
185185
pub fn exists(&self, path: &str) -> PyResult<bool> {
186186
self.core.exists(path).map_err(format_pyerr)
187187
}

0 commit comments

Comments
 (0)