diff --git a/odoo-stubs/sql_db.pyi b/odoo-stubs/sql_db.pyi index fd4568f..0cadbe2 100644 --- a/odoo-stubs/sql_db.pyi +++ b/odoo-stubs/sql_db.pyi @@ -62,6 +62,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 mogrify(self, query, params: Any | None = ...) -> str: ... def execute(self, query, params: Any | None = ..., log_exceptions: bool = ...): ...