Skip to content

Commit 699b40b

Browse files
fix mypy
1 parent e00e10c commit 699b40b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airbyte_cdk/sources/file_based/stream/default_file_based_stream.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def cursor_field(self) -> Union[str, List[str]]:
231231
return self.ab_last_mod_col
232232

233233
@cache
234-
def get_json_schema(self) -> JsonSchema:
234+
def get_json_schema(self) -> JsonSchema: # type: ignore
235235
if self.use_file_transfer:
236236
return file_transfer_schema
237237
extra_fields = {
@@ -381,7 +381,7 @@ async def _infer_schema(self, files: List[RemoteFile]) -> Mapping[str, Any]:
381381

382382
return base_schema
383383

384-
async def _infer_file_schema(self, file: RemoteFile) -> SchemaType:
384+
async def _infer_file_schema(self, file: RemoteFile) -> SchemaType: # type: ignore
385385
try:
386386
return await self.get_parser().infer_schema(
387387
self.config, file, self.stream_reader, self.logger

0 commit comments

Comments
 (0)