Skip to content

Commit 2ca0422

Browse files
committed
Fix pylint errors
1 parent 6b8786d commit 2ca0422

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ testing =
1616
slash>=1.5.0
1717
Flask
1818
Flask-Loopback
19-
pylint~=1.7.0
19+
pylint~=1.9.0; python_version<'3.0'
20+
pylint~=2.2.0; python_version>='3.0'
2021
pytest; python_version < '3.0'
2122
pytest>4.0; python_version >= '3.0'
2223
pytest-cov<2.6; python_version < '3.0'

tests/test_backslash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# py.test style tests here
22

33
def test_import():
4-
import backslash # pylint: disable=trailing-newlines, unused-variable,unused-import
4+
import backslash # pylint: disable=trailing-newlines, unused-variable, unused-import

0 commit comments

Comments
 (0)