Fokko commented on code in PR #4678: URL: https://github.com/apache/iceberg/pull/4678#discussion_r863061788
########## python/src/iceberg/schema.py: ########## @@ -19,7 +19,10 @@ import sys from abc import ABC, abstractmethod -from typing import Dict, Generic, Iterable, List, TypeVar +from typing import TYPE_CHECKING, Dict, Generic, Iterable, List, TypeVar + +if TYPE_CHECKING: + from iceberg.expressions.base import Accessor Review Comment: At that makes sense, thanks! ########## python/src/iceberg/schema.py: ########## @@ -19,7 +19,10 @@ import sys from abc import ABC, abstractmethod -from typing import Dict, Generic, Iterable, List, TypeVar +from typing import TYPE_CHECKING, Dict, Generic, Iterable, List, TypeVar + +if TYPE_CHECKING: + from iceberg.expressions.base import Accessor Review Comment: At that makes sense, thanks! -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
