Satisfy clippy

This commit is contained in:
Ellie Huxtable 2021-02-15 21:36:07 +00:00
parent ba086f909d
commit e980973ba0

View file

@ -105,7 +105,7 @@ impl rusqlite::ToSql for QueryParam {
use rusqlite::types::{ToSqlOutput, Value};
match self {
QueryParam::Text(s) => Ok(ToSqlOutput::Owned(Value::Text(s.clone()))),
Self::Text(s) => Ok(ToSqlOutput::Owned(Value::Text(s.clone()))),
}
}
}