diff --git a/odoo-stubs/sql_db.pyi b/odoo-stubs/sql_db.pyi index 0e56407..d74d182 100644 --- a/odoo-stubs/sql_db.pyi +++ b/odoo-stubs/sql_db.pyi @@ -59,6 +59,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 = ...