Skip to content

Commit 6a8fa0d

Browse files
committed
Fix tests on python 3.8
1 parent 96d8419 commit 6a8fa0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crashtest/frame_collection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
from typing import TYPE_CHECKING
44
from typing import Any
5+
from typing import List
56

67

78
if TYPE_CHECKING:
8-
99
from crashtest.frame import Frame
1010

1111

12-
class FrameCollection(list[Any]):
12+
class FrameCollection(List[Any]):
1313
def __init__(self, frames: list[Frame] | None = None, count: int = 0) -> None:
1414
if frames is None:
1515
frames = []

0 commit comments

Comments
 (0)