Fokko commented on code in PR #6501: URL: https://github.com/apache/iceberg/pull/6501#discussion_r1060878045
########## python/pyiceberg/io/fsspec.py: ########## @@ -150,9 +150,12 @@ def exists(self) -> bool: """Checks whether the location exists""" return self._fs.lexists(self.location) - def open(self) -> InputStream: + def open(self, seekable: bool = False) -> InputStream: Review Comment: Sure, done! ########## python/pyiceberg/avro/file.py: ########## @@ -132,7 +131,7 @@ def __enter__(self) -> AvroFile: Returns: A generator returning the AvroStructs """ - self.input_stream = BufferedReader(self.input_file.open()) # type: ignore + self.input_stream = self.input_file.open() Review Comment: Done! 👍🏻 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org