Restore 79 character lines.

This commit is contained in:
Anthony Sottile
2014-10-01 17:18:41 -07:00
parent 7119acdc7d
commit 5d9ba14841
2 changed files with 3 additions and 4 deletions

View File

@@ -51,7 +51,9 @@ def get_validator(
jsonschema.validate(obj, json_schema)
except jsonschema.exceptions.ValidationError as e:
raise exception_type(
'Invalid content: {0}\n{1}'.format(os.path.relpath(filename), e),
'Invalid content: {0}\n{1}'.format(
os.path.relpath(filename), e
),
)
obj = apply_defaults(obj, json_schema)

View File

@@ -23,6 +23,3 @@ deps =
sphinx
changedir = docs
commands = sphinx-build -b html -d build/doctrees source build/html
[flake8]
max-line-length=131