Skip to content

Commit

Permalink
Fix indentation in setup.py (#106)
Browse files Browse the repository at this point in the history
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
```
  • Loading branch information
eltoder authored Aug 14, 2023
1 parent 6790111 commit a952730
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit a952730

Please sign in to comment.