warnings
OrmarDeprecatedSince020
Bases: OrmarDeprecationWarning
A specific OrmarDeprecationWarning
subclass defining
functionality deprecated since Ormar 0.20.
Source code in ormar\warnings.py
46 47 48 49 50 51 |
|
OrmarDeprecationWarning
Bases: DeprecationWarning
A Pydantic specific deprecation warning.
This warning is raised when using deprecated functionality in Ormar. It provides information on when the deprecation was introduced and the expected version in which the corresponding functionality will be removed.
Attributes: message: Description of the warning since: Ormar version in what the deprecation was introduced expected_removal: Ormar version in what the functionality will be removed
Source code in ormar\warnings.py
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
|