diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-07-03 23:18:59 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-07-03 23:18:59 -0400 |
commit | 24b986ca4e8eda852080d5e469d3639b119d8623 (patch) | |
tree | a525c9bb782d84ddb9b67b44183edcbabee95f5b /snippets | |
parent | 4275371df5f1f1607db398345fa1120ce58fec6f (diff) | |
download | emacs.d-24b986ca4e8eda852080d5e469d3639b119d8623.tar.gz |
Update pymc import in snippets
Diffstat (limited to 'snippets')
-rw-r--r-- | snippets/python-mode/pymc | 2 | ||||
-rw-r--r-- | snippets/python-mode/pymc-file | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/snippets/python-mode/pymc b/snippets/python-mode/pymc index c4a6a62..1fc9900 100644 --- a/snippets/python-mode/pymc +++ b/snippets/python-mode/pymc @@ -2,5 +2,5 @@ # key: pm # group: imports # -- -import pymc as pm +import pymc3 as pm $0 diff --git a/snippets/python-mode/pymc-file b/snippets/python-mode/pymc-file index b78b7db..0425445 100644 --- a/snippets/python-mode/pymc-file +++ b/snippets/python-mode/pymc-file @@ -3,7 +3,7 @@ # key: pmf # expand-env: ((yas-indent-line 'fixed)) # -- -import pymc as pm +import pymc3 as pm with pm.Model() as model: $0 |