Skip to content

Commit 935f24e

Browse files
committed
Mypy fix for #116.
1 parent de4874b commit 935f24e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snapshot/check_read.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def attempt_download() -> io.BytesIO:
124124
time.sleep(const.RETRY_DELAY)
125125
target_buffer = attempt_download()
126126

127-
results = list(fastavro.reader(target_buffer)) # type: ignore
127+
results: typing.Iterable[dict] = list(fastavro.reader(target_buffer)) # type: ignore
128128
for result in results:
129129
for field in expected_fields:
130130
if field not in result:

0 commit comments

Comments
 (0)