Private
Public Access
1
0

Clippy, warnings fix

This commit is contained in:
2024-06-14 20:26:56 -07:00
parent cabd3b502a
commit da36d9da91
3 changed files with 7 additions and 7 deletions

View File

@@ -24,7 +24,7 @@ impl TestClient {
impl APIInterface for TestClient {
type Error = TestError;
async fn authenticate(&mut self, credentials: Credentials) -> Result<JwtToken, Self::Error> {
async fn authenticate(&mut self, _credentials: Credentials) -> Result<JwtToken, Self::Error> {
Ok(JwtToken::dummy())
}