From 75365bf718db0fb40ae02cf162d07d984cfe4556 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Wed, 1 Apr 2026 09:14:29 -0700 Subject: [PATCH] fix: remove unused import (#16449) https://github.com/openai/codex/pull/16433 resulted in an unused import inside `mod tests`. This is flagged by `cargo clippy --tests`, which is run as part of https://github.com/openai/codex/actions/workflows/rust-ci-full.yml, but is not caught by our current Bazel setup for clippy. Fixing this ASAP to get https://github.com/openai/codex/actions/workflows/rust-ci-full.yml green again, but am looking at fixing the Bazel workflow in parallel. --- codex-rs/state/src/runtime/logs.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/codex-rs/state/src/runtime/logs.rs b/codex-rs/state/src/runtime/logs.rs index 3e3239c3f..30bbe1882 100644 --- a/codex-rs/state/src/runtime/logs.rs +++ b/codex-rs/state/src/runtime/logs.rs @@ -537,7 +537,6 @@ mod tests { use crate::LogQuery; use crate::logs_db_path; use crate::migrations::LOGS_MIGRATOR; - use crate::state_db_path; use chrono::Utc; use pretty_assertions::assert_eq; use sqlx::SqlitePool;