Fix linting tests

This commit is contained in:
Tobie Morgan Hitchcock 2022-10-25 02:41:16 -07:00
parent 01858bf4ca
commit 34dd96efb9
2 changed files with 8 additions and 8 deletions

View file

@ -22,10 +22,10 @@ impl From<&str> for Uuid {
} }
} }
impl From<uuid::Uuid> for Uuid{ impl From<uuid::Uuid> for Uuid {
fn from(v: uuid::Uuid) -> Self { fn from(v: uuid::Uuid) -> Self {
Uuid(v) Uuid(v)
} }
} }
impl From<String> for Uuid { impl From<String> for Uuid {

View file

@ -155,10 +155,10 @@ impl From<Uuid> for Value {
} }
} }
impl From<uuid::Uuid> for Value{ impl From<uuid::Uuid> for Value {
fn from(v: uuid::Uuid) -> Self { fn from(v: uuid::Uuid) -> Self {
Value::Uuid(Uuid(v)) Value::Uuid(Uuid(v))
} }
} }
impl From<Param> for Value { impl From<Param> for Value {