From fe36b91545fedd18ea55a38b4025eb822c518613 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Wed, 16 Mar 2022 15:26:54 +0200 Subject: [PATCH] Revert sorting --- tests/scipy-notebook/data/cython/setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/scipy-notebook/data/cython/setup.py b/tests/scipy-notebook/data/cython/setup.py index 489df0c4..2ad2140c 100644 --- a/tests/scipy-notebook/data/cython/setup.py +++ b/tests/scipy-notebook/data/cython/setup.py @@ -1,4 +1,6 @@ -from Cython.Build import cythonize -from setuptools import setup +# These lines are not sorted by isort on purpose +# 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"))