Skip to content

Commit deb060c

Browse files
committed
Code format
1 parent 59c6996 commit deb060c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/asgi/http.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ macro_rules! handle_request_with_ws {
120120
.map_err(|e| match e {})
121121
.boxed(),
122122
)
123-
.unwrap()
123+
.unwrap();
124124
}
125125
};
126126
}

src/asgi/io.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ impl ASGIHTTPProtocol {
217217
Err(_) => {
218218
log::info!("Cannot open file {}", &file_path);
219219
response_404()
220-
},
220+
}
221221
};
222222
let _ = tx.send(res);
223223
Ok(())

src/rsgi/http.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ macro_rules! handle_request_with_ws {
125125
.map_err(|e| match e {})
126126
.boxed(),
127127
)
128-
.unwrap()
128+
.unwrap();
129129
}
130130
}
131131
}

src/rsgi/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ impl PyResponseFile {
237237
Err(_) => {
238238
log::info!("Cannot open file {}", &self.file_path);
239239
response_404()
240-
},
240+
}
241241
}
242242
}
243243
}

0 commit comments

Comments
 (0)