Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-snake committed Jan 15, 2025
1 parent 94526a3 commit 8b29f4f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/internet_identity/src/openid/google.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ use internet_identity_interface::internet_identity::types::MetadataEntryV2;
use rsa::{Pkcs1v15Sign, RsaPublicKey};
use serde::Serialize;
use sha2::{Digest, Sha256};
use std::cell::{Cell, RefCell};
use std::cell::RefCell;
use std::collections::HashMap;
use std::convert::Into;
use std::rc::Rc;
#[cfg(test)]
use std::cell::Cell;

const ISSUER: &str = "https://accounts.google.com";

Expand Down

0 comments on commit 8b29f4f

Please sign in to comment.