diff options
| author | 谭九鼎 <109224573@qq.com> | 2022-01-26 16:58:29 +0800 |
|---|---|---|
| committer | 谭九鼎 <109224573@qq.com> | 2022-01-26 16:58:29 +0800 |
| commit | a7c6d64f76091d1cfd8297ba813fe4e901d00ce4 (patch) | |
| tree | 71bd1a41b85ce19a9ed7554825a576b4fb6de6d1 /setuptools/command | |
| parent | 1a1397a4ef0327ba09ddd4a3d0916af48d3be7ec (diff) | |
| download | python-setuptools-git-a7c6d64f76091d1cfd8297ba813fe4e901d00ce4.tar.gz | |
Use super()
Diffstat (limited to 'setuptools/command')
| -rw-r--r-- | setuptools/command/easy_install.py | 2 |
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))) |
