summaryrefslogtreecommitdiff
path: root/example.py
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2014-04-28 18:14:46 +0900
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2014-05-02 10:20:56 +0900
commit0cd7518c21140d480e06a1d6086b6fe71e6d7533 (patch)
treec0d00d4e19af03a0ca7725e7d4a68e8130a3c85b /example.py
parentf0b77968389966cd7bad0cac1fe7f04526eafde1 (diff)
downloadpygerrit-0cd7518c21140d480e06a1d6086b6fe71e6d7533.tar.gz
Stop using pylint
- It has dependencies on several other modules. - It is too strict. It should be enough to run pyflakes. Change-Id: I17d1c3390e5530e2b2a86d680d9816a29f272707
Diffstat (limited to 'example.py')
-rwxr-xr-xexample.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/example.py b/example.py
index 6a27ac1..f53820a 100755
--- a/example.py
+++ b/example.py
@@ -32,9 +32,7 @@ import sys
from requests.auth import HTTPBasicAuth, HTTPDigestAuth
from requests.exceptions import RequestException
try:
- # pylint: disable=F0401
from requests_kerberos import HTTPKerberosAuth, OPTIONAL
- # pylint: enable=F0401
_kerberos_support = True
except ImportError:
_kerberos_support = False