Skip to content

Commit

Permalink
use snake case
Browse files Browse the repository at this point in the history
  • Loading branch information
CaselIT committed Apr 16, 2020
1 parent ffd0e9a commit af9d285
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class BuildFailed(Exception):
pass


def getCythonOptions():
def get_cython_options():
# from sqlalchemy setup.py
from distutils.errors import CCompilerError, DistutilsExecError, DistutilsPlatformError
ext_errors = (CCompilerError, DistutilsExecError, DistutilsPlatformError)
Expand Down Expand Up @@ -165,7 +165,7 @@ def load_description():

def run_setup(CYTHON):
if CYTHON:
cmdclass, ext_modules = getCythonOptions()
cmdclass, ext_modules = get_cython_options()
else:
cmdclass, ext_modules = {}, []

Expand Down

0 comments on commit af9d285

Please sign in to comment.