mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-03 09:49:07 +01:00
fixup clippy
This commit is contained in:
parent
1233b913ab
commit
8ffac3802c
1 changed files with 2 additions and 0 deletions
|
@ -144,12 +144,14 @@ macro_rules! impl_api_error {
|
|||
}
|
||||
};
|
||||
(@de $value:ident, $variant:ident ($var_inner:ty), $val:literal, $block:expr) => {
|
||||
#[allow(clippy::redundant_closure_call)]
|
||||
match $block($value) {
|
||||
Some(data) => return Ok(Self::Value::$variant(data)),
|
||||
_ => {}
|
||||
}
|
||||
};
|
||||
(@de $value:ident, $variant:ident, $val:literal, $block:expr) => {
|
||||
#[allow(clippy::redundant_closure_call)]
|
||||
if $block($value) {
|
||||
return Ok(Self::Value::$variant);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue