summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2025-06-11 12:39:28 -0400
committerOwen Jacobson <owen@grimoire.ca>2025-06-11 12:39:28 -0400
commit6e6b068ae2adc8c5ef8acb633dcadfbdc3221b61 (patch)
tree79831028416b0d6934f32961a3fc77d8b004369e /src
parent1f009e06fd6db82a91536eec88ef3232267385bf (diff)
tools/reformat
Diffstat (limited to 'src')
-rw-r--r--src/normalize/string.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/normalize/string.rs b/src/normalize/string.rs
index ee33267..9cfc7d7 100644
--- a/src/normalize/string.rs
+++ b/src/normalize/string.rs
@@ -1,8 +1,8 @@
use std::{fmt, string::String as StdString};
use sqlx::{
- encode::{Encode, IsNull}, Database, Decode,
- Type,
+ Database, Decode, Type,
+ encode::{Encode, IsNull},
};
pub trait Normalize: Clone + Default {