From 4419300d447c2d121f7c5f3343c947667002ee62 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Thu, 28 Mar 2024 17:05:47 -0600 Subject: [PATCH] fixes required by careful --- src/lazy_index_map.rs | 1 - tests/python.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/src/lazy_index_map.rs b/src/lazy_index_map.rs index 382d5e36..c490a9d4 100644 --- a/src/lazy_index_map.rs +++ b/src/lazy_index_map.rs @@ -1,5 +1,4 @@ use std::borrow::{Borrow, Cow}; -use std::cmp::{Eq, PartialEq}; use std::fmt; use std::hash::Hash; use std::slice::Iter as SliceIter; diff --git a/tests/python.rs b/tests/python.rs index 3920dc56..1def317d 100644 --- a/tests/python.rs +++ b/tests/python.rs @@ -1,6 +1,5 @@ use pyo3::prelude::*; use pyo3::types::{PyDict, PyList, PyString}; -use pyo3::ToPyObject; use jiter::{cache_clear, cache_usage, map_json_error, python_parse, JsonValue, StringCacheMode};