diff --git a/bindings/python/tree_sitter_tree_sitter_vb_dotnet/binding.c b/bindings/python/tree_sitter_tree_sitter_vb_dotnet/binding.c index 8122c88..08e4018 100644 --- a/bindings/python/tree_sitter_tree_sitter_vb_dotnet/binding.c +++ b/bindings/python/tree_sitter_tree_sitter_vb_dotnet/binding.c @@ -2,10 +2,10 @@ typedef struct TSLanguage TSLanguage; -TSLanguage *tree_sitter_tree_sitter_vb_dotnet(void); +TSLanguage *tree_sitter_vb_dotnet(void); static PyObject* _binding_language(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(args)) { - return PyCapsule_New(tree_sitter_tree_sitter_vb_dotnet(), "tree_sitter.Language", NULL); + return PyCapsule_New(tree_sitter_vb_dotnet(), "tree_sitter.Language", NULL); } static struct PyModuleDef_Slot slots[] = {