We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6239bc3 commit 6a7e82dCopy full SHA for 6a7e82d
db_dtypes/json.py
@@ -269,15 +269,6 @@ def __arrow_ext_serialize__(self) -> bytes:
269
# No parameters are necessary
270
return b""
271
272
- def __eq__(self, other):
273
- if isinstance(other, pyarrow.BaseExtensionType):
274
- return type(self) == type(other)
275
- else:
276
- return NotImplemented
277
-
278
- def __ne__(self, other) -> bool:
279
- return not self == other
280
281
@classmethod
282
def __arrow_ext_deserialize__(cls, storage_type, serialized) -> ArrowJSONType:
283
# return an instance of this subclass
0 commit comments