Revert sorting

This commit is contained in:
Ayaz Salikhov
2022-03-16 15:26:54 +02:00
parent 2f201a4b81
commit fe36b91545

View File

@@ -1,4 +1,6 @@
from Cython.Build import cythonize # These lines are not sorted by isort on purpose
from setuptools import setup # see: https://stackoverflow.com/a/53356077/4881441
from setuptools import setup # isort:skip
from Cython.Build import cythonize # isort:skip
setup(ext_modules=cythonize("helloworld.pyx")) setup(ext_modules=cythonize("helloworld.pyx"))