X-Git-Url: https://git.kaliko.me/?p=python-musicpd.git;a=blobdiff_plain;f=musicpd.py;h=855ff5f9718020a4da6fd9bb8b9aaffa6cc7bf70;hp=a2637fb4c4aa139e11cd28cf7b1cd8e3ddc5de80;hb=bfd56e9bb04f1d02016c1b8c0406c01152550e31;hpb=0008768ae40167b15c4b466950ea9d1d2c367c8c diff --git a/musicpd.py b/musicpd.py index a2637fb..855ff5f 100644 --- a/musicpd.py +++ b/musicpd.py @@ -15,7 +15,7 @@ # You should have received a copy of the GNU Lesser General Public License # along with python-musicpd. If not, see . -# pylint: disable=C0111 +# pylint: disable=missing-docstring import socket from functools import wraps @@ -25,7 +25,7 @@ HELLO_PREFIX = "OK MPD " ERROR_PREFIX = "ACK " SUCCESS = "OK" NEXT = "list_OK" -VERSION = '0.4.2' +VERSION = '0.4.3' def iterator_wrapper(func): @@ -446,7 +446,6 @@ class MPDClient: self.mpd_version = line[len(HELLO_PREFIX):].strip() def _reset(self): - # pylint: disable=w0201 self.mpd_version = None self._iterating = False self._pending = []