summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Burns2010-06-20 22:59:53 -0700
committerChristopher Burns2010-06-20 22:59:53 -0700
commit9524a836dcc4d2aedc9ba6643d40530e6f22fd8c (patch)
treeee2aac6bc20b57c4ffd48ed4ebf987463ff566eb
parent7d6692f4bb6f1e41263e06bf5cf2cc55b8afd9bf (diff)
downloadworkshops-more-scipy-9524a836dcc4d2aedc9ba6643d40530e6f22fd8c.tar.gz
workshops-more-scipy-9524a836dcc4d2aedc9ba6643d40530e6f22fd8c.tar.bz2
workshops-more-scipy-9524a836dcc4d2aedc9ba6643d40530e6f22fd8c.zip
Add whitespace to exercise code.
--HG-- branch : scipy2010
-rw-r--r--day1/exercise/four_plot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/day1/exercise/four_plot.py b/day1/exercise/four_plot.py
index 5417ee5..4130241 100644
--- a/day1/exercise/four_plot.py
+++ b/day1/exercise/four_plot.py
@@ -1,4 +1,4 @@
-x=linspace(-5*pi, 5*pi, 500)
+x = linspace(-5*pi, 5*pi, 500)
plot(x, x, 'b')
plot(x, -x, 'b')
plot(x, sin(x), 'g', linewidth=2)