From 560c634ed8572bcc42658587d157b7d003ff8c27 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Thu, 2 Apr 2020 18:14:56 +0100 Subject: [PATCH] setup.py: fix indentation --- setup.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index 1f4fbd77e..d8cb18b3b 100755 --- a/setup.py +++ b/setup.py @@ -49,16 +49,16 @@ with_cython = ( opt_with_cython = {'--with-cython'}.intersection(sys.argv) opt_without_cython = {'--without-cython'}.intersection(sys.argv) if opt_with_cython and opt_without_cython: - sys.exit( - "error: the options '--with-cython' and '--without-cython' are " - "mutually exclusive" - ) + sys.exit( + "error: the options '--with-cython' and '--without-cython' are " + "mutually exclusive" + ) elif opt_with_cython: - sys.argv.remove("--with-cython") - with_cython = True + sys.argv.remove("--with-cython") + with_cython = True elif opt_without_cython: - sys.argv.remove("--without-cython") - with_cython = False + sys.argv.remove("--without-cython") + with_cython = False if with_cython and not has_cython: setup_requires.append("cython")