(i)
| 31 | return line, |
| 32 | |
| 33 | def animate(i): |
| 34 | x = np.linspace(0, 10, 100) |
| 35 | y = np.sin(x + i) |
| 36 | line.set_data(x, y) |
| 37 | return line, |
| 38 | |
| 39 | # "klass" can be passed to determine the class returned by the fixture |
| 40 | kwargs = dict(getattr(request, 'param', {})) # make a copy |
nothing calls this directly
no test coverage detected
searching dependent graphs…