Skip to content

Commit cf1d351

Browse files
committed
fix trailing whitespace to use cargo fmt
Signed-off-by: Joseph Livesey <joseph.livesey@btp.works>
1 parent a04e6f9 commit cf1d351

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

airbnb/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ async fn scrape_all(driver: WebDriver) -> Result<(), Box<dyn Error>> {
3636

3737
match next_page_button.is_clickable().await? {
3838
true => {
39-
39+
4040
//start extracting data
41-
41+
4242
let house_elems = get_house_elements(&driver).await?;
4343

4444
for house_elem in house_elems {
4545

4646
let bnb_details = BnbDetails::from(house_elem).await?;
47-
47+
4848
wtr.serialize(bnb_details)?;
4949

5050
}

0 commit comments

Comments
 (0)