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,7 +22,7 @@ impl From<&str> for Uuid {
}
}
impl From<uuid::Uuid> for Uuid{
impl From<uuid::Uuid> for Uuid {
fn from(v: uuid::Uuid) -> Self {
Uuid(v)
}

View file

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