aboutsummaryrefslogtreecommitdiff
path: root/arg_picker/src
diff options
context:
space:
mode:
Diffstat (limited to 'arg_picker/src')
-rw-r--r--arg_picker/src/arg.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/arg_picker/src/arg.rs b/arg_picker/src/arg.rs
index 0b5176d..32824ea 100644
--- a/arg_picker/src/arg.rs
+++ b/arg_picker/src/arg.rs
@@ -1,4 +1,4 @@
-use crate::{Pickable, PickerArgInfo, SinglePickable, parselib::ParserStyle};
+use crate::{Pickable, PickerArgInfo, parselib::ParserStyle};
use std::marker::PhantomData;
/// Represents a constraint definition for a parameter selection.
@@ -166,7 +166,7 @@ where
impl<'a, Type> From<PickerArg<'a, Type>> for Vec<String>
where
- Type: SinglePickable,
+ Type: Pickable<'a>,
{
fn from(value: PickerArg<'a, Type>) -> Self {
let mut result = Vec::new();