Skip to content

Commit 5d9ba14

Browse files
committed
Restore 79 character lines.
1 parent 7119acd commit 5d9ba14

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

pre_commit/clientlib/validate_base.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ def validate(filename, load_strategy=yaml.load):
5151
jsonschema.validate(obj, json_schema)
5252
except jsonschema.exceptions.ValidationError as e:
5353
raise exception_type(
54-
'Invalid content: {0}\n{1}'.format(os.path.relpath(filename), e),
54+
'Invalid content: {0}\n{1}'.format(
55+
os.path.relpath(filename), e
56+
),
5557
)
5658

5759
obj = apply_defaults(obj, json_schema)

tox.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,3 @@ deps =
2323
sphinx
2424
changedir = docs
2525
commands = sphinx-build -b html -d build/doctrees source build/html
26-
27-
[flake8]
28-
max-line-length=131

0 commit comments

Comments
 (0)