Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-predibase committed Nov 19, 2024
1 parent acf8324 commit 69f24b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion launcher/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ fn download_convert_model(
envs.push(("HUGGING_FACE_HUB_TOKEN".into(), api_token.into()))
};

if let Ok(predibase_api_token) = &args.predibase_api_token {
if let Some(predibase_api_token) = &args.predibase_api_token {
envs.push((
"PREDIBASE_API_TOKEN".into(),
predibase_api_token.to_string().into(),
Expand Down

0 comments on commit 69f24b2

Please sign in to comment.