Skip to content

Commit 982f0ec

Browse files
committed
Fix some linter errors.
1 parent e7c2da8 commit 982f0ec

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tox.ini

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,14 @@ ignore =
7171
W503,
7272
# line break after binary operator
7373
W504,
74+
# do not compare types, use isinstance()
75+
E721,
76+
# missing whitespace after ','
77+
E231,
78+
# line too long
79+
E501,
80+
# redefinition of unused name
81+
F811,
7482

7583
per-file-ignores=
7684
__init__.py: F401,

0 commit comments

Comments
 (0)