mirror of
https://github.com/openai/codex.git
synced 2026-06-01 19:02:59 +00:00
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.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user