Skip to content

Commit

Permalink
remove is_in_message check
Browse files Browse the repository at this point in the history
  • Loading branch information
KappaShilaff committed Jun 23, 2022
1 parent 2798049 commit 23e14ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,9 @@ pub fn from_vec_extracted_to_any_extractable_output(
};

for x in extracted {
if !x.is_in_message {
continue;
}
// if !x.is_in_message {
// continue;
// }

let any_extractable = match x.parsed_type {
ParsedType::FunctionInput => Function(ParsedFunction {
Expand Down

0 comments on commit 23e14ac

Please sign in to comment.