Skip to content

Commit 9435baa

Browse files
committed
fix(verify): drop unused Ast import to unbreak Rust CI
clippy -D unused-imports rejected the Ast trait import because Bool's inherent methods cover everything called in this file. Removing Ast restores compilation of the lib target, which had been blocking the test and coverage jobs on main.
1 parent 5e85b17 commit 9435baa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/verification/z3_integration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: PMPL-1.0-or-later
22

3-
use z3::ast::{Ast, Bool};
3+
use z3::ast::Bool;
44
use z3::{Config, Context, Solver};
55

66
use crate::game::Level;

0 commit comments

Comments
 (0)