Skip to content

Commit e8bd16d

Browse files
committed
ci: [torrust#658] fixed minor linting error
1 parent deb738e commit e8bd16d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/databases/mysql.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ impl Database for Mysql {
156156
}
157157

158158
async fn get_user_profiles(&self) -> Result<Vec<UserProfile>, database::Error> {
159-
query_as::<_, UserProfile>(r#"SELECT * FROM torrust_user_profiles"#)
159+
query_as::<_, UserProfile>(r"SELECT * FROM torrust_user_profiles")
160160
.fetch_all(&self.pool)
161161
.await
162162
.map_err(|_| database::Error::Error)

0 commit comments

Comments
 (0)