Skip to content

Commit c6e9b27

Browse files
JesperAxelssonmehcode
authored andcommitted
Formatting
1 parent 719b04b commit c6e9b27

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

cargo-sqlx/src/main.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -216,10 +216,7 @@ fn get_base_url<'a>(db_url: &'a str) -> Result<DbUrl> {
216216
let db_name = split[0];
217217
let base_url = split[1];
218218

219-
Ok(DbUrl {
220-
base_url,
221-
db_name,
222-
})
219+
Ok(DbUrl { base_url, db_name })
223220
}
224221

225222
async fn check_if_db_exists(db_url: &DbUrl<'_>) -> Result<bool> {

0 commit comments

Comments
 (0)