pep8 fixes
This commit is contained in:
parent
816be1cbe8
commit
4f2871f504
|
@ -20,12 +20,6 @@
|
|||
#
|
||||
# http://code.google.com/p/pylast/
|
||||
|
||||
__version__ = '1.1.0'
|
||||
__author__ = 'Amr Hassan, hugovk'
|
||||
__copyright__ = "Copyright (C) 2008-2010 Amr Hassan, 2013-2014 hugovk"
|
||||
__license__ = "apache2"
|
||||
__email__ = 'amr.hassan@gmail.com'
|
||||
|
||||
import hashlib
|
||||
from xml.dom import minidom
|
||||
import xml.dom
|
||||
|
@ -36,9 +30,14 @@ import sys
|
|||
import collections
|
||||
import warnings
|
||||
import re
|
||||
|
||||
import six
|
||||
|
||||
__version__ = '1.1.0'
|
||||
__author__ = 'Amr Hassan, hugovk'
|
||||
__copyright__ = "Copyright (C) 2008-2010 Amr Hassan, 2013-2014 hugovk"
|
||||
__license__ = "apache2"
|
||||
__email__ = 'amr.hassan@gmail.com'
|
||||
|
||||
|
||||
def _deprecation_warning(message):
|
||||
warnings.warn(message, DeprecationWarning)
|
||||
|
|
Loading…
Reference in a new issue