summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
author谭九鼎 <109224573@qq.com>2022-01-26 16:58:29 +0800
committer谭九鼎 <109224573@qq.com>2022-01-26 16:58:29 +0800
commita7c6d64f76091d1cfd8297ba813fe4e901d00ce4 (patch)
tree71bd1a41b85ce19a9ed7554825a576b4fb6de6d1 /setuptools/command
parent1a1397a4ef0327ba09ddd4a3d0916af48d3be7ec (diff)
downloadpython-setuptools-git-a7c6d64f76091d1cfd8297ba813fe4e901d00ce4.tar.gz
Use super()
Diffstat (limited to 'setuptools/command')
-rw-r--r--setuptools/command/easy_install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index 514719de..5fab0fdb 100644
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -1577,7 +1577,7 @@ class PthDistributions(Environment):
self.sitedirs = list(map(normalize_path, sitedirs))
self.basedir = normalize_path(os.path.dirname(self.filename))
self._load()
- Environment.__init__(self, [], None, None)
+ super().__init__([], None, None)
for path in yield_lines(self.paths):
list(map(self.add, find_distributions(path, True)))