PyLint tweaks.
Added .pylint-ignores patchfile, with waived PyLint warnings
This commit is contained in:
parent
3e5ba6ae28
commit
d8e874aad6
8 changed files with 250 additions and 12 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue