Skip to content

Commit 009324c

Browse files
zeevdrclaude
andcommitted
fix(auth): remove unused type: ignore comment in _channel.py
Co-Authored-By: Claude <noreply@anthropic.com>
1 parent b166660 commit 009324c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdk/src/opendecree/_channel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
def _token_call_credentials(token: str) -> grpc.CallCredentials:
1818
"""Return gRPC call credentials that inject a Bearer token."""
1919

20-
def _callback(context: object, callback: object) -> None: # type: ignore[type-arg]
20+
def _callback(context: object, callback: object) -> None:
2121
assert callable(callback)
2222
callback([("authorization", f"Bearer {token}")], None)
2323

0 commit comments

Comments
 (0)