We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de4874b commit 935f24eCopy full SHA for 935f24e
snapshot/check_read.py
@@ -124,7 +124,7 @@ def attempt_download() -> io.BytesIO:
124
time.sleep(const.RETRY_DELAY)
125
target_buffer = attempt_download()
126
127
- results = list(fastavro.reader(target_buffer)) # type: ignore
+ results: typing.Iterable[dict] = list(fastavro.reader(target_buffer)) # type: ignore
128
for result in results:
129
for field in expected_fields:
130
if field not in result:
0 commit comments