Skip to content

Commit 1a5db73

Browse files
Fix clippy::semicolon_if_nothing_returned lint
1 parent 7d2258e commit 1a5db73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webdriver.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ impl KeyInputState {
375375
let mut actions: Vec<_> = undo_actions.drain().collect();
376376
actions.sort_unstable();
377377
for action in actions {
378-
result.push(self.dispatch_keyup(action).unwrap().into())
378+
result.push(self.dispatch_keyup(action).unwrap().into());
379379
}
380380
assert!(undo_actions.is_empty());
381381
}

0 commit comments

Comments
 (0)