diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2017-09-09 09:28:44 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-09-09 09:28:44 -0400 |
| commit | 0a61412521347cf683dcb1026c3d44aeac31f94a (patch) | |
| tree | 14d7ade564da73238ed97fc5329924242e24465f /pkg_resources | |
| parent | 2d96236409de143b6c37c98ceeac3db969c4e247 (diff) | |
| download | python-setuptools-git-0a61412521347cf683dcb1026c3d44aeac31f94a.tar.gz | |
Remove unnecessary paretheses.
Diffstat (limited to 'pkg_resources')
| -rw-r--r-- | pkg_resources/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py index 6eca01dc..9c0f3d95 100644 --- a/pkg_resources/__init__.py +++ b/pkg_resources/__init__.py @@ -2253,9 +2253,7 @@ def _is_egg_path(path): """ Determine if given path appears to be an egg. """ - return ( - path.lower().endswith('.egg') - ) + return path.lower().endswith('.egg') def _is_unpacked_egg(path): |
