Skip to content

Commit

Permalink
And that's what the lints are for
Browse files Browse the repository at this point in the history
  • Loading branch information
theRookieCoder committed Apr 25, 2022
1 parent e344d36 commit abcabda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async fn actual_main() -> Result<()> {
let github = {
let mut builder = octocrab::OctocrabBuilder::new();
if let Some(token) = cli_app.github_token {
builder = builder.personal_token(token.into());
builder = builder.personal_token(token);
}
octocrab::initialise(builder)
}?;
Expand Down

0 comments on commit abcabda

Please sign in to comment.