rdblue commented on code in PR #4504:
URL: https://github.com/apache/iceberg/pull/4504#discussion_r843336870
##########
python/src/iceberg/schema.py:
##########
@@ -203,32 +210,32 @@ def after_map_value(self, value: NestedField) -> None:
@abstractmethod
def schema(self, schema: Schema, struct_result: T) -> T:
"""Visit a Schema"""
- ...
+ ... # pragma: no cover
@abstractmethod
def struct(self, struct: StructType, field_results: List[T]) -> T:
"""Visit a StructType"""
- ...
+ ... # pragma: no cover
@abstractmethod
def field(self, field: NestedField, field_result: T) -> T:
"""Visit a NestedField"""
- ...
+ ... # pragma: no cover
@abstractmethod
def list(self, list_type: ListType, element_result: T) -> T:
"""Visit a ListType"""
- ...
+ ... # pragma: no cover
@abstractmethod
def map(self, map_type: MapType, key_result: T, value_result: T) -> T:
"""Visit a MapType"""
- ...
+ ... # pragma: no cover
@abstractmethod
def primitive(self, primitive: PrimitiveType) -> T:
"""Visit a PrimitiveType"""
- ...
+ ... # pragma: no cover
Review Comment:
What does this do?
--
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]