diff --git a/plot.py b/plot.py index a2c2a5f..8da37cf 100644 --- a/plot.py +++ b/plot.py @@ -1,5 +1,6 @@ -import matplotlib.pyplot as plt +import matplotlib matplotlib.use('Agg') +import matplotlib.pyplot as plt plt.plot([1, 2, 3, 4]) plt.ylabel('some numbers') plt.savefig('test.png') diff --git a/test.png b/test.png new file mode 100644 index 0000000..1600b00 Binary files /dev/null and b/test.png differ