summaryrefslogtreecommitdiff
path: root/setuptools/wheel.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-01-19 12:46:30 -0500
committerJason R. Coombs <jaraco@jaraco.com>2020-01-19 12:46:30 -0500
commit3d4d8b9dde61b87271861b8c7ebeb168ac4fa72b (patch)
treeffbf9cd5a02337ced626892b672b7e21bd305717 /setuptools/wheel.py
parenta0e8d0568d84e29066a5b45aade5aafe28237ec0 (diff)
downloadpython-setuptools-git-3d4d8b9dde61b87271861b8c7ebeb168ac4fa72b.tar.gz
👹 Feed the hobgoblins (delint).
Diffstat (limited to 'setuptools/wheel.py')
-rw-r--r--setuptools/wheel.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/wheel.py b/setuptools/wheel.py
index 025aaa82..ec1106a7 100644
--- a/setuptools/wheel.py
+++ b/setuptools/wheel.py
@@ -77,7 +77,8 @@ class Wheel:
def is_compatible(self):
'''Is the wheel is compatible with the current platform?'''
- supported_tags = set((t.interpreter, t.abi, t.platform) for t in sys_tags())
+ supported_tags = set(
+ (t.interpreter, t.abi, t.platform) for t in sys_tags())
return next((True for t in self.tags() if t in supported_tags), False)
def egg_name(self):