Skip to content

Commit

Permalink
Don't break api
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Sep 20, 2024
1 parent 5061f1e commit 3a94419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/client/get.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ PyObject *AerospikeClient_Get(AerospikeClient *self, PyObject *args,
static char *kwlist[] = {"key", "policy", NULL};

// Python Function Argument Parsing
if (PyArg_ParseTupleAndKeywords(args, kwds, "O|O!:get", kwlist, &py_key,
&PyDict_Type, &py_policy) == false) {
if (PyArg_ParseTupleAndKeywords(args, kwds, "O|O:get", kwlist, &py_key,
&py_policy) == false) {
return NULL;
}

Expand Down

0 comments on commit 3a94419

Please sign in to comment.