Skip to content

Commit fb0ae2e

Browse files
committed
ruff
1 parent 8364aad commit fb0ae2e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,16 @@
1111

1212
try:
1313
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
14+
1415
class bdist_wheel(_bdist_wheel):
1516
def finalize_options(self):
1617
super().finalize_options()
1718
self.root_is_pure = not sys.platform.startswith("win")
19+
1820
def get_tag(self):
1921
python, abi, plat = _bdist_wheel.get_tag(self)
2022
# We don't contain any python source
21-
python, abi = 'py2.py3', 'none'
23+
python, abi = "py2.py3", "none"
2224
return python, abi, plat
2325
except ImportError:
2426
bdist_wheel = None

0 commit comments

Comments
 (0)