Skip to content

Commit

Permalink
Fixed linters (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea authored Dec 16, 2020
1 parent 903c66f commit 41f7754
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repos:
- id: black
language_version: python3
- repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v3.3.0
rev: v3.4.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
Expand All @@ -33,7 +33,7 @@ repos:
- pydocstyle>=5.1.1
- flake8-absolute-import
# - flake8-black>=0.1.1
- flake8-bugbear
- flake8-bugbear>=20.11.1
language_version: python3
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.790
Expand Down
2 changes: 1 addition & 1 deletion _test/test_comments.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def test_mlget_00(self):
d = round_trip_load(x)
assert d.mlget(['a', 1, 'd', 'f'], list_ok=True) == 196
with pytest.raises(AssertionError):
d.mlget(['a', 1, 'd', 'f']) == 196
assert d.mlget(['a', 1, 'd', 'f']) == 196


class TestInsertPopList:
Expand Down

0 comments on commit 41f7754

Please sign in to comment.