summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2015-02-05 16:17:41 -0500
committerTimothy Crosley <timothy.crosley@gmail.com>2015-02-05 16:17:41 -0500
commit2f8bb98c08a8158f9157e4c22d8a8dcd0037793c (patch)
treec08106363eee83f847d2701efe9677a614d20487
parent97dcfbca0ce99e89a6ca68b67b7dd74bc22ed615 (diff)
downloadisort-2f8bb98c08a8158f9157e4c22d8a8dcd0037793c.tar.gz
Add wrap_length setting
-rw-r--r--isort/settings.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/isort/settings.py b/isort/settings.py
index cdb5cd74..0b14bec6 100644
--- a/isort/settings.py
+++ b/isort/settings.py
@@ -44,6 +44,7 @@ WrapModes = namedtuple('WrapModes', WrapModes)(*range(len(WrapModes)))
default = {'force_to_top': [],
'skip': ['__init__.py', ],
'line_length': 79,
+ 'wrap_length': 0,
'known_future_library': ['__future__'],
'known_standard_library': ["abc", "anydbm", "argparse", "array", "asynchat", "asyncore", "atexit", "base64",
"BaseHTTPServer", "bisect", "bz2", "calendar", "cgitb", "cmd", "codecs",