]> kaliko git repositories - python-musicpd.git/blobdiff - musicpd.py
Use of setuptools
[python-musicpd.git] / musicpd.py
index a2637fb4c4aa139e11cd28cf7b1cd8e3ddc5de80..855ff5f9718020a4da6fd9bb8b9aaffa6cc7bf70 100644 (file)
@@ -15,7 +15,7 @@
 # You should have received a copy of the GNU Lesser General Public License
 # along with python-musicpd.  If not, see <http://www.gnu.org/licenses/>.
 
-# 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 = []