Skip to content

Commit

Permalink
pylint: Add a missing comma in disable
Browse files Browse the repository at this point in the history
  • Loading branch information
janezd committed Jun 10, 2019
1 parent 21e36d2 commit 2299f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ confidence=
# --disable=W"
disable=
missing-docstring, # I guess not
no-name-in-module, no-member # too many false positives from Qt
no-name-in-module, no-member, # too many false positives from Qt
too-many-ancestors, # I don't think this is a problem
no-else-return # else's may actually improve readability

Expand Down

0 comments on commit 2299f26

Please sign in to comment.