Skip to content

Commit

Permalink
refactor: bring into compliance w/ CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyMichaelTDM committed May 8, 2024
1 parent 9423e25 commit 2ff8ce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/typescript.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ pub fn extract_custom_type(segment: &syn::PathSegment) -> Result<TsType, ()> {

Ok(format!("{}<{}>", ident, args).into())
}
syn::PathArguments::Parenthesized(parenthesized_argument) => {
syn::PathArguments::Parenthesized(_parenthesized_argument) => {
Err(()) // tuples are not supported yet
}
}
Expand Down

0 comments on commit 2ff8ce2

Please sign in to comment.