We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ba86c commit 97ad599Copy full SHA for 97ad599
pyproject.toml
@@ -36,7 +36,7 @@ pytest-asyncio = "^0.18.3"
36
pandas = ">=1.0,<3"
37
black = "22.6.0"
38
isort = "^5.9"
39
-mypy = "0.982"
+mypy = "1.19"
40
types-setuptools = "^57.4"
41
# documentation
42
# NOTE: when changing these, update docs-requirements.txt
stan/fit.py
@@ -96,6 +96,7 @@ def __init__(
96
)
97
98
draw_row = tuple(msg["values"].values()) # a "row" of values from a single draw from Stan C++
99
+ draw_row = cast(Tuple[float, ...], draw_row)
100
self._draws[:, draw_index, chain_index] = draw_row
101
draw_index += 1
102
finally:
0 commit comments