summaryrefslogtreecommitdiffstats
path: root/dogtag.pylintrc
diff options
context:
space:
mode:
authorAbhishek Koneru <akoneru@redhat.com>2014-05-02 17:35:48 -0400
committerAbhishek Koneru <akoneru@redhat.com>2014-05-29 11:13:32 -0400
commitb4e89529c9a93510433190bbe2a72bb380545512 (patch)
tree10c1d60a0318125d78092a9dab8c08e0815884fe /dogtag.pylintrc
parent989e5d3c4ce2b77d8612094d6d95b59d75d04637 (diff)
downloadpki-b4e89529c9a93510433190bbe2a72bb380545512.tar.gz
pki-b4e89529c9a93510433190bbe2a72bb380545512.tar.xz
pki-b4e89529c9a93510433190bbe2a72bb380545512.zip
Implemented CertResource methods in CertClient on the python side.
The methods currently implemented in the CertClient are: get_cert(), review_cert(), list_certs(), revoke_cert(), revoke_ca_cert(), hold_cert(), unrevoke_cert() Also included some test code in main method.
Diffstat (limited to 'dogtag.pylintrc')
-rw-r--r--dogtag.pylintrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/dogtag.pylintrc b/dogtag.pylintrc
index aeb0a2362..511a2a07e 100644
--- a/dogtag.pylintrc
+++ b/dogtag.pylintrc
@@ -36,7 +36,8 @@ load-plugins=
# W0105 (pointless-string-statement):
# String statement has no effect Used when a string is used as a statement (which of course has no effect). This is a particular case of W0104 with its own message so you can easily disable it if you’re # using those strings as documentation, instead of comments.
# W0511 (fixme): Used when a warning note as FIXME or XXX is detected.
-disable=W0511,W0105
+# W0142: Used when a function or method is called using *args or **kwargs to dispatch arguments. This doesn't improve readability and should be used with care.
+disable=W0511,W0105,W0142
[REPORTS]