From f079f8bc8247f21215b01eec62d86e7079f62ce4 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Mon, 11 Aug 2025 11:31:15 -0700 Subject: [PATCH] cleanup warnings --- rustybits/src/smeeclient/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rustybits/src/smeeclient/mod.rs b/rustybits/src/smeeclient/mod.rs index b68ac9a6b..ddd2cc1f7 100644 --- a/rustybits/src/smeeclient/mod.rs +++ b/rustybits/src/smeeclient/mod.rs @@ -11,13 +11,12 @@ */ use serde::{Deserialize, Serialize}; use std::str::FromStr; -use std::time::Duration; use temporal_client::{Client, ClientOptionsBuilder, RetryClient, WorkflowClientTrait, WorkflowOptions}; use temporal_sdk_core_protos::{ coresdk::AsJsonPayloadExt, temporal::api::enums::v1::{WorkflowIdConflictPolicy, WorkflowIdReusePolicy}, }; -use tokio::runtime::{Handle, Runtime}; +use tokio::runtime::Handle; use url::Url; use uuid::Uuid;