pep8 fixes
This commit is contained in:
parent
816be1cbe8
commit
4f2871f504
|
@ -20,12 +20,6 @@
|
||||||
#
|
#
|
||||||
# http://code.google.com/p/pylast/
|
# 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
|
import hashlib
|
||||||
from xml.dom import minidom
|
from xml.dom import minidom
|
||||||
import xml.dom
|
import xml.dom
|
||||||
|
@ -36,9 +30,14 @@ import sys
|
||||||
import collections
|
import collections
|
||||||
import warnings
|
import warnings
|
||||||
import re
|
import re
|
||||||
|
|
||||||
import six
|
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):
|
def _deprecation_warning(message):
|
||||||
warnings.warn(message, DeprecationWarning)
|
warnings.warn(message, DeprecationWarning)
|
||||||
|
|
Loading…
Reference in a new issue