mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
refactor(lex): Remove unused bound
This commit is contained in:
parent
65120784f5
commit
0000d506ed
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue