X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=musicpd.py;h=e281a922522fb257ff858393d3108eec505d1669;hp=f480acdd0f5897b91a8eae8e0783d1ba55e86fe9;hb=ca2fb2a8b8ec82b9156265e07f43c937111d5b90;hpb=4fdeb581beba85d9157fac917c48ae08dda4c941 diff --git a/musicpd.py b/musicpd.py index f480acd..e281a92 100644 --- a/musicpd.py +++ b/musicpd.py @@ -15,6 +15,8 @@ # You should have received a copy of the GNU Lesser General Public License # along with python-musicpd. If not, see . +# pylint: disable=C0111 + import socket @@ -22,7 +24,7 @@ HELLO_PREFIX = "OK MPD " ERROR_PREFIX = "ACK " SUCCESS = "OK" NEXT = "list_OK" -VERSION = '0.4.0pr0' +VERSION = '0.4.0pr1' class MPDError(Exception): @@ -382,6 +384,7 @@ class MPDClient(object): self.mpd_version = line[len(HELLO_PREFIX):].strip() def _reset(self): + # pylint: disable=w0201 self.mpd_version = None self._iterating = False self._pending = []