python bindings

This commit is contained in:
J. Nick Koston 2023-11-27 23:21:17 -06:00
parent 949227b292
commit 20fcd9269a
No known key found for this signature in database

View File

@ -135,9 +135,7 @@ CONNECTION_STATE_CLOSED = ConnectionState.CLOSED
def _make_hello_request(client_info: str) -> HelloRequest: def _make_hello_request(client_info: str) -> HelloRequest:
"""Make a HelloRequest.""" """Make a HelloRequest."""
return HelloRequest( return HelloRequest(
client_info=client_info, client_info=client_info, api_version_major=1, api_version_minor=9
api_version_major=1,
api_version_minor=9,
) )