Skip to content

Commit 3298083

Browse files
Add spaces around colons
1 parent 605e2e7 commit 3298083

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pymc/model.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1969,19 +1969,19 @@ def Deterministic(name, var, model=None, dims=None):
19691969
19701970
Parameters
19711971
----------
1972-
name: str
1972+
name : str
19731973
Name of the deterministic variable to be registered in the model.
1974-
var: tensor_like
1974+
var : tensor_like
19751975
Expression for the calculation of the variable.
19761976
model : Model, optional
1977-
The model object to which the Deterministic function is added.
1977+
The model object to which the Deterministic variable is added.
19781978
If ``None`` is provided, the current model in the context stack is used.
19791979
dims : str or tuple of str, optional
19801980
Dimension names for the variable.
19811981
19821982
Returns
19831983
-------
1984-
var: tensor_like
1984+
var : tensor_like
19851985
The registered, named variable wrapped in Deterministic.
19861986
19871987
Examples

0 commit comments

Comments
 (0)