kbendick commented on code in PR #4797:
URL: https://github.com/apache/iceberg/pull/4797#discussion_r875373103
##########
python/src/iceberg/types.py:
##########
@@ -208,6 +208,10 @@ def __init__(self, *fields: NestedField, **kwargs):
fields = kwargs["fields"]
object.__setattr__(self, "fields", fields)
+ # This __post_init__ call is needed as IcebergType is not a dataclass
+ def __post_init__(self):
+ super().__init__()
Review Comment:
To be honest, I'm not actually sure. I _think_ we might be able to safely
just ignore this, but this was the suggested route so I went with it.
--
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]