Skip to content
Snippets Groups Projects
Commit 2bd1fe82 authored by Nathaniel Manista's avatar Nathaniel Manista
Browse files

Merge pull request #2826 from soltanmm/typo-fix

Fix debug annotation typo in Python.
parents b4b92048 1116b0b4
No related branches found
No related tags found
No related merge requests found
......@@ -96,7 +96,7 @@ Server *pygrpc_Server_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
PyObject *py_args;
grpc_channel_args c_args;
char *keywords[] = {"cq", "args", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!O:Channel", keywords,
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!O:Server", keywords,
&pygrpc_CompletionQueue_type, &cq, &py_args)) {
return NULL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment