Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3645001

Browse files
committed
pep8 change to simple_plot_fps.py
1 parent ccd1ffb commit 3645001

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

examples/pylab_examples/simple_plot_fps.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
Example: simple line plot.
33
Show how to make and save a simple line plot with labels, title and grid
44
"""
5-
from __future__ import print_function # not necessary in Python 3.x
5+
from __future__ import print_function # not necessary in Python 3.x
66
import matplotlib.pyplot as plt
77
import numpy as np
88
import time
99

10+
1011
plt.ion()
1112

1213
t = np.arange(0.0, 1.0 + 0.001, 0.001)

0 commit comments

Comments
 (0)