Skip to content

Commit

Permalink
Remove redundant imports to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
senekor committed Mar 27, 2024
1 parent 88fce47 commit 01fffab
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion exercises/practice/poker/.meta/example.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::fmt;
use std::{cmp::Ordering, convert::TryFrom};
use std::cmp::Ordering;

use counter::Counter;

Expand Down
2 changes: 0 additions & 2 deletions exercises/practice/simple-linked-list/.meta/example.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use std::iter::FromIterator;

pub struct SimpleLinkedList<T> {
head: Option<Box<Node<T>>>,
len: usize,
Expand Down

0 comments on commit 01fffab

Please sign in to comment.