Skip to content

Commit 93b811a

Browse files
committed
mypy ..
1 parent 8e675ae commit 93b811a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

gambaterm/audio.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import atexit
44
import logging
55
import os
6-
from typing import Generator, Iterator, TYPE_CHECKING
6+
from typing import Any, Generator, Iterator, TYPE_CHECKING
77
from contextlib import contextmanager
88
from collections import deque
99

@@ -75,7 +75,7 @@ def __init__(
7575
self._diag_ratio_min = self.nominal_sampling_ratio
7676
self._diag_ratio_max = self.nominal_sampling_ratio
7777
if self._csv_enabled:
78-
self._diag_frames: list[dict] = []
78+
self._diag_frames: list[dict[str, Any]] = []
7979
atexit.register(self._dump_csv)
8080
atexit.register(self._log_summary)
8181

0 commit comments

Comments
 (0)