Fokko commented on code in PR #1693: URL: https://github.com/apache/iceberg-python/pull/1693#discussion_r1965220905
########## tests/table/test_upsert.py: ########## @@ -25,6 +25,9 @@ from pyiceberg.exceptions import NoSuchTableError from pyiceberg.schema import Schema from pyiceberg.table import UpsertResult +from pyiceberg.table.upsert_util import create_match_filter +from pyiceberg.expressions import And, Reference, EqualTo +from pyiceberg.expressions.literals import LongLiteral Review Comment: The linter is very picky :) ```suggestion from pyiceberg.expressions import And, EqualTo, Reference from pyiceberg.expressions.literals import LongLiteral from pyiceberg.schema import Schema from pyiceberg.table import UpsertResult from pyiceberg.table.upsert_util import create_match_filter ``` -- 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