chore: run cargo fmt

This commit is contained in:
2022-12-12 22:41:35 +01:00
parent 0000018081
commit 000001900c
3 changed files with 3 additions and 7 deletions

View File

@@ -28,9 +28,7 @@ fn main() {
let client = Client::builder().default_headers(headers).build().unwrap();
let res = client
.get(format!(
"https://adventofcode.com/{year}/day/{day}/input"
))
.get(format!("https://adventofcode.com/{year}/day/{day}/input"))
.send()
.unwrap()
.text()