diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-05-05 03:12:33 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-05-05 03:12:33 -0400 |
commit | 322db6ab6e096653842edb0980e582805b70e8c2 (patch) | |
tree | a97134a58d5b8c5ce17ada0fae34e2eb142beb68 | |
parent | 4aca4845a3e536d0138eaebfe8b7b7b3817ca233 (diff) | |
download | external_python_setuptools-322db6ab6e096653842edb0980e582805b70e8c2.tar.gz external_python_setuptools-322db6ab6e096653842edb0980e582805b70e8c2.tar.bz2 external_python_setuptools-322db6ab6e096653842edb0980e582805b70e8c2.zip |
Reindent long line
-rw-r--r-- | pkg_resources.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg_resources.py b/pkg_resources.py index 8788eca1..df9bac57 100644 --- a/pkg_resources.py +++ b/pkg_resources.py @@ -758,7 +758,8 @@ class WorkingSet(object): class Environment(object): """Searchable snapshot of distributions on a search path""" - def __init__(self, search_path=None, platform=get_supported_platform(), python=PY_MAJOR): + def __init__(self, search_path=None, platform=get_supported_platform(), + python=PY_MAJOR): """Snapshot distributions available on a search path Any distributions found on `search_path` are added to the environment. |