Skip to content

Commit 79fff44

Browse files
committed
style: Fix clippy warnings
1 parent 40f0bd3 commit 79fff44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • workflow/deployer-workflow/impl-flyio/src

workflow/deployer-workflow/impl-flyio/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ impl Guest for Component {
310310
Ok(http_get::Response {
311311
status_code,
312312
body: _,
313-
}) if status_code >= 200 && status_code < 300 => {
313+
}) if (200..300).contains(&status_code) => {
314314
break;
315315
}
316316
_ => {}

0 commit comments

Comments
 (0)