Skip to content

Commit 2fded06

Browse files
committed
MNT: do not actually need to sub-class to make mypy happy
1 parent 6e93c4a commit 2fded06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/animation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
import matplotlib.pyplot as plt
1515
from matplotlib.animation import FuncAnimation
1616

17-
from data_prototype.containers import _Transform, DataContainer, Desc
17+
from data_prototype.containers import _Transform, Desc
1818
from data_prototype.wrappers import LineWrapper
1919

2020

21-
class SinOfTime(DataContainer):
21+
class SinOfTime:
2222
N = 1024
2323
# cycles per minutes
2424
scale = 10

0 commit comments

Comments
 (0)