Skip to content

Commit f69e159

Browse files
williambdeanricardoV94
authored andcommitted
use dictionary for coords
1 parent 4ad7fa8 commit f69e159

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pymc/model/core.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -368,10 +368,8 @@ class Model(WithMemoization, metaclass=ContextMeta):
368368
import numpy as np
369369
370370
coords = {
371-
"feature",
372-
["A", "B", "C"],
373-
"trial",
374-
[1, 2, 3, 4, 5],
371+
"feature": ["A", "B", "C"],
372+
"trial": [1, 2, 3, 4, 5],
375373
}
376374
377375
with pm.Model(coords=coords) as model:

0 commit comments

Comments
 (0)