From 2f9825a6af8e34288353c553f980b06be6e15f65 Mon Sep 17 00:00:00 2001 From: Peter Teichman Date: Sun, 9 Sep 2012 08:20:18 -0400 Subject: [PATCH] apply the pep8 default max_line_length in _PEP8Options --- flake8/run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/flake8/run.py b/flake8/run.py index 649f7b9..7d5b137 100644 --- a/flake8/run.py +++ b/flake8/run.py @@ -110,6 +110,7 @@ class _PEP8Options(object): benchmark = False testsuite = '' doctest = False + max_line_length = pep8.MAX_LINE_LENGTH def _initpep8():