style: cargo fmt --all

This commit is contained in:
2026-05-12 23:37:20 -04:00
parent 3d2df64ffe
commit 8416ef0609

View File

@@ -14,7 +14,7 @@ impl FromStr for Storage {
fn from_str(s: &str) -> Result<Self, Self::Err> {
let uri = s.into_operator_uri()?;
let operator = Operator::from_uri(&uri)?;
let uri = uri.into();
Ok(Self { uri, operator })