Skip to content

Commit da1e562

Browse files
Remove unused type: ignore[override] comment to fix mypy lint
The parent TSaslClientTransport.send_sasl_msg() has no type annotations, so there is no override incompatibility for mypy to suppress. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 34d1bdd commit da1e562

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyiceberg/catalog/hive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ class _DigestMD5SaslTransport(TTransport.TSaslClientTransport):
154154
coerces ``None`` to ``b""`` so the SASL handshake proceeds normally.
155155
"""
156156

157-
def send_sasl_msg(self, status: int, body: bytes | None) -> None: # type: ignore[override]
157+
def send_sasl_msg(self, status: int, body: bytes | None) -> None:
158158
super().send_sasl_msg(status, body if body is not None else b"")
159159

160160

0 commit comments

Comments
 (0)