From 6419c495b849deafe49e8bd89c8b70f6902a8f6c Mon Sep 17 00:00:00 2001 From: meteorgan Date: Mon, 6 Jan 2025 22:48:16 +0800 Subject: [PATCH] fix cargo clippy --- integrations/object_store/examples/s3_with_opts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/object_store/examples/s3_with_opts.rs b/integrations/object_store/examples/s3_with_opts.rs index 31e766290896..2ede6c5e71c2 100644 --- a/integrations/object_store/examples/s3_with_opts.rs +++ b/integrations/object_store/examples/s3_with_opts.rs @@ -1,6 +1,6 @@ use bytes::Bytes; use object_store::path::Path; -use object_store::{GetOptions, GetRange, ObjectStore, PutMode, PutOptions}; +use object_store::{GetOptions, ObjectStore, PutOptions}; use object_store_opendal::OpendalStore; use opendal::services::S3Config; use opendal::Operator;