diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2022-02-27 20:38:16 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-02-27 20:38:16 -0500 |
commit | cb229fa27a86fc48bd40340eacbec60fe5aa609b (patch) | |
tree | 83a1f79b3f6e09d0c50d5e731e2afc48148167e1 | |
parent | 6625540cfc30a582017af3a15cab9d4b71953c73 (diff) | |
download | python-setuptools-git-cb229fa27a86fc48bd40340eacbec60fe5aa609b.tar.gz |
Use super throughout.
-rw-r--r-- | setuptools/command/easy_install.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 6da39e73..107850a9 100644 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1655,14 +1655,14 @@ class PthDistributions(Environment): if new_path: self.paths.append(dist.location) self.dirty = True - Environment.add(self, dist) + super().add(dist) def remove(self, dist): """Remove `dist` from the distribution map""" while dist.location in self.paths: self.paths.remove(dist.location) self.dirty = True - Environment.remove(self, dist) + super().remove(dist) def make_relative(self, path): npath, last = os.path.split(normalize_path(path)) |