merge main

This commit is contained in:
dni ⚡
2022-12-01 12:37:08 +01:00
6 changed files with 21 additions and 8 deletions
+2 -1
View File
@@ -86,7 +86,8 @@ class Connection(Compat):
return raw_html
# tuple to list and back to tuple
values = tuple([cleanhtml(l) for l in list(values)])
value_list = [values] if isinstance(values, str) else list(values)
values = tuple([cleanhtml(l) for l in value_list])
return values
async def fetchall(self, query: str, values: tuple = ()) -> list: