diff --git a/odoo-stubs/sql_db.pyi b/odoo-stubs/sql_db.pyi index ce5d3cf..02b77f7 100644 --- a/odoo-stubs/sql_db.pyi +++ b/odoo-stubs/sql_db.pyi @@ -51,6 +51,7 @@ class Cursor(BaseCursor): def dictfetchone(self) -> dict[str, Any] | None: ... def dictfetchmany(self, size) -> list[dict[str, Any]]: ... def dictfetchall(self) -> list[dict[str, Any]]: ... + def fetchall(self) -> list[tuple]: ... def __del__(self) -> None: ... def execute( self, query, params: Any | None = ..., log_exceptions: Any | None = ...