Skip to content

Commit

Permalink
Remove Debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
Narsil committed Aug 5, 2024
1 parent 987ccc3 commit af589b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -767,13 +767,13 @@ struct PySafeSlice {
storage: Arc<Storage>,
}

#[derive(Debug, FromPyObject)]
#[derive(FromPyObject)]
enum SliceIndex<'a> {
Slice(PyBound<'a, PySlice>),
Index(i32),
}

#[derive(Debug, FromPyObject)]
#[derive(FromPyObject)]
enum Slice<'a> {
Slice(SliceIndex<'a>),
Slices(Vec<SliceIndex<'a>>),
Expand Down

0 comments on commit af589b7

Please sign in to comment.