Skip to content

Commit

Permalink
Fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
atodorov committed Mar 4, 2019
1 parent 6bc3972 commit d047a58
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ flake8:

.PHONY: pylint
pylint:
PYTHONPATH=. pylint --extension-pkg-whitelist=kerberos -d missing-docstring tcms_api/ tests/
PYTHONPATH=. pylint --extension-pkg-whitelist=kerberos \
-d missing-docstring -d duplicate-code \
tcms_api/ tests/

test:
python -m unittest -v tests/*.py
Expand Down
3 changes: 2 additions & 1 deletion tcms_api/plugin_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
from . import TCMS


class Backend:
class Backend: # pylint: disable=too-many-instance-attributes

"""
Facilitates RPC communications with the backend and implements
behavior described at:
Expand Down

0 comments on commit d047a58

Please sign in to comment.