refactor(lex): Remove unused bound

This commit is contained in:
Ed Page 2022-04-08 10:13:34 -05:00
parent 65120784f5
commit 0000d506ed

View file

@ -10,7 +10,7 @@ pub(crate) struct Input {
impl<I, T> From<I> for Input
where
I: Iterator<Item = T>,
T: Into<OsString> + Clone,
T: Into<OsString>,
{
fn from(val: I) -> Self {
Self {