Skip to content

Commit

Permalink
fix search_exact_byteslike argspec
Browse files Browse the repository at this point in the history
  • Loading branch information
taleinat committed Jun 25, 2024
1 parent aadb376 commit 024b830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fuzzysearch/_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ search_exact_byteslike(PyObject *self, PyObject *args, PyObject *kwdict) {
int subseq_sum;
char *next_match_ptr;

const char* argspec = "y*y*|ll:search_exact_byteslike";
const char* argspec = "y*y*|nn:search_exact_byteslike";

if (unlikely(!PyArg_ParseTupleAndKeywords(
args, kwdict,
Expand Down

0 comments on commit 024b830

Please sign in to comment.