diff --git a/src/member.rs b/src/member.rs index fdb36b2..6ec3ffa 100644 --- a/src/member.rs +++ b/src/member.rs @@ -22,23 +22,6 @@ where } } -impl TryFrom<&str> for Wrapper> -where - T: TryFrom + Send, -{ - type Error = PyErr; - - fn try_from(codes: &str) -> PyResult { - Ok(Wrapper( - codes - .as_parallel_string() - .par_chars() - .map(T::try_from) - .collect::>()?, - )) - } -} - impl TryFrom> for Wrapper> where T: TryFrom + Send,