Skip to content

Commit a952730

Browse files
authored
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 ```
1 parent 6790111 commit a952730

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
if system == 'AIX':
2525
CFLAGS.extend(['-qlanglvl=stdc99', '-qchars'])
2626
elif system == 'SUNOS':
27-
CFLAGS.extend(['-xc99']) # -xchar=s is the default
27+
CFLAGS.extend(['-xc99']) # -xchar=s is the default
2828
elif system != 'Windows':
29-
CFLAGS.extend(['-std=c99', '-fsigned-char', '-Wall',
30-
'-Wsign-compare', '-Wconversion'])
29+
CFLAGS.extend(['-std=c99', '-fsigned-char', '-Wall',
30+
'-Wsign-compare', '-Wconversion'])
3131

3232

3333
with open(os.path.join(

0 commit comments

Comments
 (0)