Skip to content

Commit 0047470

Browse files
committed
minor
1 parent b9a76e8 commit 0047470

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/iceberg/src/io/file_io.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,14 +407,14 @@ impl OutputFile {
407407

408408
/// Checks if file exists.
409409
pub async fn exists(&self) -> Result<bool> {
410-
self.storage.exists(&self.path).await?
410+
self.storage.exists(&self.path).await
411411
}
412412

413413
/// Deletes file.
414414
///
415415
/// If the file does not exist, it will not return error.
416416
pub async fn delete(&self) -> Result<()> {
417-
self.storage.delete(&self.path).await?
417+
self.storage.delete(&self.path).await
418418
}
419419

420420
/// Converts into [`InputFile`].

0 commit comments

Comments
 (0)