Update docs

This commit is contained in:
Mojix Coder
2022-02-01 10:28:11 +03:30
parent fc32001fe7
commit 0791e7cc4b
9 changed files with 38 additions and 28 deletions

View File

@ -745,7 +745,7 @@ below.
#### get\_or\_create
```python
| async get_or_create(*args: Any, **kwargs: Any) -> "T"
| async get_or_create(_defaults: Optional[Dict[str, Any]] = None, *args: Any, **kwargs: Any) -> Tuple["T", bool]
```
Combination of create and get methods.

View File

@ -396,7 +396,7 @@ each=True flag to affect whole table.
#### get\_or\_create
```python
| async get_or_create(*args: Any, **kwargs: Any) -> "T"
| async get_or_create(_defaults: Optional[Dict[str, Any]] = None, *args: Any, **kwargs: Any) -> Tuple["T", bool]
```
Combination of create and get methods.