Skip to content

Commit

Permalink
Fix clippy for starcoder
Browse files Browse the repository at this point in the history
  • Loading branch information
EricLBuehler committed Oct 29, 2023
1 parent 846f9ea commit 7f0c225
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions candle-lora-transformers/examples/bigcode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ fn main() -> Result<()> {

let start = std::time::Instant::now();
let api = ApiBuilder::new()
.with_progress(true)
.with_token(Some(fs::read_to_string(".hf_token")?))
.build()?;
.with_progress(true)
.with_token(Some(fs::read_to_string(".hf_token")?))
.build()?;
let repo = api.repo(Repo::with_revision(
args.model_id,
RepoType::Model,
Expand Down

0 comments on commit 7f0c225

Please sign in to comment.