Skip to content

Commit d2cd6da

Browse files
devin-ai-integration[bot]bot_apk
andcommitted
fix: resolve mypy type error in CsvParser._skip_rows
Co-Authored-By: bot_apk <apk@cognition.ai>
1 parent 9726755 commit d2cd6da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

airbyte_cdk/sources/declarative/decoders/composite_raw_decoder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def _get_delimiter(self) -> Optional[str]:
116116
return self.delimiter
117117

118118
@staticmethod
119-
def _skip_rows(text_data: TextIOWrapper, rows_to_skip: int) -> None:
119+
def _skip_rows(text_data: io.TextIOBase, rows_to_skip: int) -> None:
120120
"""Skip a specified number of rows from the current position in the text stream."""
121121
for _ in range(rows_to_skip):
122122
text_data.readline()

0 commit comments

Comments
 (0)