diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-10-05 16:49:40 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-10-05 16:49:40 -0700 |
commit | 9faf093b50da190a5efee47f3b00bd425a940c40 (patch) | |
tree | 396a6fd04188385217b6e3c0cae4f91069f1ec38 /rust/src/bin/fatcat-auth.rs | |
parent | 00c97e7a0ffb43460d544e83d2f6f2856c241cd7 (diff) | |
download | fatcat-9faf093b50da190a5efee47f3b00bd425a940c40.tar.gz fatcat-9faf093b50da190a5efee47f3b00bd425a940c40.zip |
rust: clippy cleanups
Diffstat (limited to 'rust/src/bin/fatcat-auth.rs')
-rw-r--r-- | rust/src/bin/fatcat-auth.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/bin/fatcat-auth.rs b/rust/src/bin/fatcat-auth.rs index 0b5c05b0..c351848e 100644 --- a/rust/src/bin/fatcat-auth.rs +++ b/rust/src/bin/fatcat-auth.rs @@ -89,7 +89,7 @@ fn main() -> Result<()> { }; let editor_row = editor.db_create(&db_conn)?; //println!("{:?}", editor); - println!("{}", FatcatId::from_uuid(&editor_row.id).to_string()); + println!("{}", FatcatId::from_uuid(&editor_row.id)); } ("create-token", Some(subm)) => { let editor_id = FatcatId::from_str(subm.value_of("editor-id").unwrap())?; |