mirror of
https://github.com/vale981/clay
synced 2025-03-04 17:11:41 -05:00
Lint fixes.
This commit is contained in:
parent
419dd58582
commit
895383ce16
1 changed files with 3 additions and 1 deletions
|
@ -4,6 +4,7 @@ Google Play Music integration via gmusicapi.
|
|||
# pylint: disable=broad-except
|
||||
# pylint: disable=too-many-arguments
|
||||
# pylint: disable=too-many-instance-attributes
|
||||
# pylint: disable=too-many-return-statements
|
||||
from __future__ import print_function
|
||||
from threading import Thread, Lock
|
||||
from uuid import UUID
|
||||
|
@ -195,7 +196,8 @@ class Track(object):
|
|||
album_name=track.album_name,
|
||||
album_url=track.album_url
|
||||
)
|
||||
except Exception as error: # pylint: disable=bare-except
|
||||
except Exception: # pylint: disable=bare-except
|
||||
# TODO: Fix this.
|
||||
# print('Failed to create track from data.')
|
||||
# print('Failing payload was:')
|
||||
# print(data)
|
||||
|
|
Loading…
Add table
Reference in a new issue