diff options
author | Teddy Wing | 2022-03-13 03:07:33 +0100 |
---|---|---|
committer | Teddy Wing | 2022-03-13 03:11:31 +0100 |
commit | 1bc6087f179ac2213acacaa0df917c96f9540e55 (patch) | |
tree | 5417870afb8dcdae4a5746c8666ca020fd78db9d /src/lib.rs | |
parent | 8cd470b4be6128ac9f4df61c796e4568662be896 (diff) | |
download | yaqlite-1bc6087f179ac2213acacaa0df917c96f9540e55.tar.bz2 |
extract(): Remove `unwrap()`s
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ pub fn insert( for mut doc in data { let tx = dbconn.transaction().unwrap(); - crate::yaml::extract(&mut doc, &tx, &table_name, &table_columns); + crate::yaml::extract(&mut doc, &tx, &table_name, &table_columns).unwrap(); tx.commit().unwrap(); } |