PyLint tweaks.

Added .pylint-ignores patchfile, with waived PyLint warnings
This commit is contained in:
sneakypete81 2013-07-28 18:40:27 +01:00
parent 3e5ba6ae28
commit d8e874aad6
8 changed files with 250 additions and 12 deletions

View file

@ -1,6 +1,6 @@
from .objects import Tag
class ApiTags:
class ApiTags(object):
def __init__(self, client):
self._client = client
@ -9,7 +9,7 @@ class ApiTags:
results = self._client.get("/tags/list.json", **kwds)["result"]
return [Tag(self._client, tag) for tag in results]
class ApiTag:
class ApiTag(object):
def __init__(self, client):
self._client = client