Skip to content

Commit

Permalink
make lint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Jan 4, 2024
1 parent 55d3c4a commit 81f5884
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,8 @@ def get_winver():
# extra_compile_args=["/W 4"],
# extra_link_args=["/DEBUG"],
# fmt: off
**py_limited_api # python 2.7 compatibility requires no comma
# python 2.7 compatibility requires no comma
**py_limited_api
# fmt: on
)

Expand All @@ -265,7 +266,8 @@ def get_winver():
'IOKit',
],
# fmt: off
**py_limited_api # python 2.7 compatibility requires no comma
# python 2.7 compatibility requires no comma
**py_limited_api
# fmt: on
)

Expand All @@ -282,7 +284,8 @@ def get_winver():
define_macros=macros,
libraries=["devstat"],
# fmt: off
**py_limited_api # python 2.7 compatibility requires no comma
# python 2.7 compatibility requires no comma
**py_limited_api
# fmt: on
)

Expand All @@ -299,7 +302,8 @@ def get_winver():
define_macros=macros,
libraries=["kvm"],
# fmt: off
**py_limited_api # python 2.7 compatibility requires no comma
# python 2.7 compatibility requires no comma
**py_limited_api
# fmt: on
)

Expand All @@ -316,7 +320,8 @@ def get_winver():
define_macros=macros,
libraries=["kvm"],
# fmt: off
**py_limited_api # python 2.7 compatibility requires no comma
# python 2.7 compatibility requires no comma
**py_limited_api
# fmt: on
)

Expand All @@ -335,7 +340,8 @@ def get_winver():
),
define_macros=macros,
# fmt: off
**py_limited_api # python 2.7 compatibility requires no comma
# python 2.7 compatibility requires no comma
**py_limited_api
# fmt: on
)

Expand All @@ -352,7 +358,8 @@ def get_winver():
define_macros=macros,
libraries=['kstat', 'nsl', 'socket'],
# fmt: off
**py_limited_api # python 2.7 compatibility requires no comma
# python 2.7 compatibility requires no comma
**py_limited_api
# fmt: on
)

Expand All @@ -370,7 +377,8 @@ def get_winver():
libraries=['perfstat'],
define_macros=macros,
# fmt: off
**py_limited_api # python 2.7 compatibility requires no comma
# python 2.7 compatibility requires no comma
**py_limited_api
# fmt: on
)

Expand All @@ -384,7 +392,8 @@ def get_winver():
define_macros=macros,
sources=sources,
# fmt: off
**py_limited_api # python 2.7 compatibility requires no comma
# python 2.7 compatibility requires no comma
**py_limited_api
# fmt: on
)
if SUNOS:
Expand Down

0 comments on commit 81f5884

Please sign in to comment.