(self)
| 42 | self.ax.axvline(prob, linestyle='--', color='black') |
| 43 | |
| 44 | def start(self): |
| 45 | # Used for the *init_func* parameter of FuncAnimation; this is called when |
| 46 | # initializing the animation, and also after resizing the figure. |
| 47 | return self.line, |
| 48 | |
| 49 | def __call__(self, i): |
| 50 | # This way the plot can continuously run and we just keep |
no outgoing calls
no test coverage detected