diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2018-02-10 22:51:34 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2018-02-10 22:51:34 -0500 |
| commit | 1bbafd871d1ea4419636ef0066af8afebf6f5d52 (patch) | |
| tree | d11e8146eb4abfb9d8446d750907597cae5150ef /pkg_resources/__init__.py | |
| parent | 872cab1085f7dd763daed76124d5bcb4457d733e (diff) | |
| download | python-setuptools-git-1bbafd871d1ea4419636ef0066af8afebf6f5d52.tar.gz | |
Remove redundant initialization
Diffstat (limited to 'pkg_resources/__init__.py')
| -rw-r--r-- | pkg_resources/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py index cecf7691..af65c249 100644 --- a/pkg_resources/__init__.py +++ b/pkg_resources/__init__.py @@ -2687,7 +2687,7 @@ class Distribution(object): return self.__dep_map def _build_dep_map(self): - dm = {None: []} + dm = {} for name in 'requires.txt', 'depends.txt': for extra, reqs in split_sections(self._get_metadata(name)): if extra: |
