Skip to content

Commit

Permalink
Removed useless into call
Browse files Browse the repository at this point in the history
  • Loading branch information
chamorin committed Feb 2, 2024
1 parent eaf6774 commit 658f7d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ impl Client {
);
continue;
}
return Err(Error::RetriesReached.into());
return Err(Error::RetriesReached);
}
},
Err(e) => {
Expand Down

0 comments on commit 658f7d0

Please sign in to comment.