mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-06 12:06:53 +00:00
Apply typing to all of pre-commit-hooks
This commit is contained in:
parent
63cc3414e9
commit
030bfac7e4
54 changed files with 401 additions and 264 deletions
|
|
@ -110,9 +110,9 @@ def test_first_key():
|
|||
lines = ['# some comment', '"a": 42', 'b: 17', '', 'c: 19']
|
||||
assert first_key(lines) == 'a": 42'
|
||||
|
||||
# no lines
|
||||
# no lines (not a real situation)
|
||||
lines = []
|
||||
assert first_key(lines) is None
|
||||
assert first_key(lines) == ''
|
||||
|
||||
|
||||
@pytest.mark.parametrize('bad_lines,good_lines,_', TEST_SORTS)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue