Skip to content

Commit

Permalink
fix: oops bad error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
awwpotato committed Oct 16, 2024
1 parent 5117623 commit 452098e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ async fn main() {
let nexus_api_key: String = env::var("NEXUS_API_KEY").expect("NEXUS_API_KEY must be set");
let event_key: String = env::var("EVENT_KEY").expect("EVENT_KEY must be set");
let team_key: u16 = env::var("TEAM_KEY")
.expect("team_key must be set")
.expect("TEAM_KEY must be set")
.parse::<u16>()
.expect("team_key must be an unsigned int");
.expect("TEAM_KEY must be an unsigned int");

#[rustfmt::skip]
let slides = vec![
Expand Down

0 comments on commit 452098e

Please sign in to comment.