Skip to content

Commit

Permalink
fix broken name
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmuhs committed Jun 17, 2024
1 parent 8f9bada commit 1ff8a62
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
self.Compile()


def Compile(self, *args):
def compile(self, *args):
if not args:
with nogil:
self.inst.get().Compile()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
self.Compile()


def Compile(self, *args):
def compile(self, *args):
if not args:
with nogil:
self.inst.get().Compile()
Expand Down
2 changes: 1 addition & 1 deletion python/src/addons/SecondaryKeyIntDictionaryCompiler.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
self.Compile()


def Compile(self, *args):
def compile(self, *args):
if not args:
with nogil:
self.inst.get().Compile()
Expand Down
2 changes: 1 addition & 1 deletion python/src/addons/SecondaryKeyJsonDictionaryCompiler.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
self.Compile()


def Compile(self, *args):
def compile(self, *args):
if not args:
with nogil:
self.inst.get().Compile()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
self.Compile()


def Compile(self, *args):
def compile(self, *args):
if not args:
with nogil:
self.inst.get().Compile()
Expand Down
2 changes: 1 addition & 1 deletion python/src/addons/SecondaryKeyStringDictionaryCompiler.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
self.Compile()


def Compile(self, *args):
def compile(self, *args):
if not args:
with nogil:
self.inst.get().Compile()
Expand Down

0 comments on commit 1ff8a62

Please sign in to comment.