Update stubs

Fix https://github.com/odoo-ide/odoo-stubs/issues/13
This commit is contained in:
Trinh Anh Ngoc
2023-04-26 13:37:25 +07:00
parent f9278ef240
commit bc4fcba81c

View File

@@ -1,5 +1,5 @@
from collections import MutableMapping
from typing import Any, Generator, List, TypeVar
from typing import Any, Dict, Generator, List, TypeVar
from . import api, fields
from .api import Environment
@@ -74,6 +74,8 @@ class BaseModel:
_transient_check_count: int
_transient_max_count: Any
_transient_max_hours: Any
_fields: Dict[str, fields.Field]
_ids: tuple
env: Environment = ...
pool: Registry
id = fields.Id()