diff options
author | Kyle Meyer <meyerkya@gmail.com> | 2013-08-02 11:26:27 -0400 |
---|---|---|
committer | Kyle Meyer <meyerkya@gmail.com> | 2013-08-02 11:28:15 -0400 |
commit | 3f3ebcf23c4c764cb2ca9670ed064085a13cff89 (patch) | |
tree | c6d5189adefe7c88ab2628671374061e7a9add5f | |
parent | 6cd7875af8f6f81df3476669e1b161be7aa73165 (diff) | |
download | emacs.d-3f3ebcf23c4c764cb2ca9670ed064085a13cff89.tar.gz |
Fix typos in plt snippet
-rw-r--r-- | snippets/python-mode/plt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/snippets/python-mode/plt b/snippets/python-mode/plt index 434e09c..804972c 100644 --- a/snippets/python-mode/plt +++ b/snippets/python-mode/plt @@ -1,8 +1,8 @@ # name: matplotlib-related import # key: plt # -- -import matplotlib.pyplt as plt -from matplotlib import tickers +import matplotlib.pyplot as plt +from matplotlib import ticker import pltaid $0 |