From a952730711ce51ad12c9adc32cbc63a989519f76 Mon Sep 17 00:00:00 2001 From: Eugene Toder Date: Mon, 14 Aug 2023 15:14:42 -0400 Subject: [PATCH] Fix indentation in setup.py (#106) Fixes flake8 complaints: ``` ./setup.py:27:29: E261 at least two spaces before inline comment ./setup.py:29:6: E111 indentation is not a multiple of 4 ./setup.py:29:6: E117 over-indented ``` --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 7a56c754..3a13d5d5 100644 --- a/setup.py +++ b/setup.py @@ -24,10 +24,10 @@ if system == 'AIX': CFLAGS.extend(['-qlanglvl=stdc99', '-qchars']) elif system == 'SUNOS': - CFLAGS.extend(['-xc99']) # -xchar=s is the default + CFLAGS.extend(['-xc99']) # -xchar=s is the default elif system != 'Windows': - CFLAGS.extend(['-std=c99', '-fsigned-char', '-Wall', - '-Wsign-compare', '-Wconversion']) + CFLAGS.extend(['-std=c99', '-fsigned-char', '-Wall', + '-Wsign-compare', '-Wconversion']) with open(os.path.join(