diff options
author | Ed Bartosh <eduard.bartosh@intel.com> | 2015-01-16 14:48:12 +0200 |
---|---|---|
committer | Ed Bartosh <eduard.bartosh@intel.com> | 2015-01-23 14:51:32 +0200 |
commit | 092b39098071bc22441c3562c0f9c0234ebf130d (patch) | |
tree | 2d4f95e7fc86530b944776efa307d14ee0fd1a0b | |
parent | 0f7fab645b817204bc7aef09954fe795d0900272 (diff) | |
download | repa-092b39098071bc22441c3562c0f9c0234ebf130d.tar.gz repa-092b39098071bc22441c3562c0f9c0234ebf130d.tar.bz2 repa-092b39098071bc22441c3562c0f9c0234ebf130d.zip |
obs: Disable pylint warning
Disabled 'Too many public methods' warning as it comes from OSC and has
nothing to do with the code from obs module.
Fixes: #2320
Change-Id: I61aa73de07da797ee5d555fda90d65cc963bfe3d
Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
-rw-r--r-- | repa/obs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/repa/obs.py b/repa/obs.py index e674797..572a639 100644 --- a/repa/obs.py +++ b/repa/obs.py @@ -63,6 +63,7 @@ user=%(user)s passx=%(passwdx)s """ +# pylint: disable=too-many-public-methods class OBS(OSC): """Interface to OBS API.""" |