We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 054fcbf commit 19359c9Copy full SHA for 19359c9
1 file changed
petab/v2/problem.py
@@ -10,7 +10,7 @@
10
from math import nan
11
from numbers import Number
12
from pathlib import Path
13
-from typing import TYPE_CHECKING
+from typing import TYPE_CHECKING, Any
14
15
import pandas as pd
16
import sympy as sp
@@ -1099,6 +1099,12 @@ def __iadd__(self, other):
1099
def model_dump(self, **kwargs) -> dict[str, Any]:
1100
"""Convert this Problem to a dictionary.
1101
1102
+ This function is intended for debugging purposes and should not be
1103
+ used for serialization. The output of this function may change
1104
+ without notice.
1105
+
1106
+ The output includes all PEtab tables, but not the model itself.
1107
1108
See `pydantic.BaseModel.model_dump <https://docs.pydantic.dev/latest/api/base_model/#pydantic.BaseModel.model_dump>`__
1109
for details.
1110
0 commit comments