Skip to content

Commit 2b0d173

Browse files
committed
Unify the behavior around the return type when calling super(install).
1 parent 0dc924a commit 2b0d173

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setuptools/command/install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ def run(self):
100100

101101
if not self._called_from_setup(inspect.currentframe()):
102102
# Run in backward-compatibility mode to support bdist_* commands.
103-
super().run()
103+
return super().run()
104104
else:
105-
super().run()
105+
return super().run()
106106

107107
return None
108108

0 commit comments

Comments
 (0)