Fix pep8 errors
pep8 1.6.4 detects more issues
This commit is contained in:
parent
b65be8d44b
commit
6d2b97daec
@ -93,8 +93,8 @@ class NormalizedVersion(object):
|
||||
"""
|
||||
if len(version_string) > 1 and version_string[0] == '0':
|
||||
raise InvalidVersionError("Can not have leading zero in segment"
|
||||
" %s in %r" % (version_string,
|
||||
self._activity_version))
|
||||
" %s in %r" %
|
||||
(version_string, self._activity_version))
|
||||
|
||||
return int(version_string)
|
||||
|
||||
@ -112,8 +112,8 @@ class NormalizedVersion(object):
|
||||
for n in extraversion_string.split("."):
|
||||
if len(n) > 1 and n[0] == '0':
|
||||
raise InvalidVersionError("Can not have leading zero in "
|
||||
"segment %s in %r" % (n,
|
||||
self._activity_version))
|
||||
"segment %s in %r"
|
||||
% (n, self._activity_version))
|
||||
nums.append(int(n))
|
||||
|
||||
while nums and nums[-1] == 0:
|
||||
|
@ -24,8 +24,7 @@ import logging
|
||||
|
||||
from gi.repository import GConf
|
||||
|
||||
colors = [
|
||||
['#B20008', '#FF2B34'],
|
||||
colors = [['#B20008', '#FF2B34'],
|
||||
['#FF2B34', '#B20008'],
|
||||
['#E6000A', '#FF2B34'],
|
||||
['#FF2B34', '#E6000A'],
|
||||
@ -204,8 +203,7 @@ colors = [
|
||||
['#AC32FF', '#00588C'],
|
||||
['#005FE4', '#AC32FF'],
|
||||
['#AC32FF', '#005FE4'],
|
||||
['#BCCDFF', '#AC32FF'],
|
||||
]
|
||||
['#BCCDFF', '#AC32FF']]
|
||||
|
||||
|
||||
def _parse_string(color_string):
|
||||
|
@ -49,31 +49,26 @@ def _get_supported_image_mime_types():
|
||||
|
||||
_extensions = {}
|
||||
_globs_timestamps = []
|
||||
_generic_types = [
|
||||
{
|
||||
_generic_types = [{
|
||||
'id': GENERIC_TYPE_TEXT,
|
||||
'name': _('Text'),
|
||||
'icon': 'text-x-generic',
|
||||
'types': [
|
||||
'text/plain', 'text/rtf', 'application/pdf', 'application/x-pdf',
|
||||
'types': ['text/plain', 'text/rtf', 'application/pdf', 'application/x-pdf',
|
||||
'text/html', 'application/vnd.oasis.opendocument.text',
|
||||
'application/rtf', 'text/rtf', 'application/epub+zip'],
|
||||
},
|
||||
{
|
||||
}, {
|
||||
'id': GENERIC_TYPE_IMAGE,
|
||||
'name': _('Image'),
|
||||
'icon': 'image-x-generic',
|
||||
'types': _get_supported_image_mime_types(),
|
||||
},
|
||||
{
|
||||
}, {
|
||||
'id': GENERIC_TYPE_AUDIO,
|
||||
'name': _('Audio'),
|
||||
'icon': 'audio-x-generic',
|
||||
'types': [
|
||||
'audio/ogg', 'audio/x-wav', 'audio/wav', 'audio/x-vorbis+ogg',
|
||||
'audio/x-mpegurl', 'audio/mpegurl', 'audio/mpeg', 'audio/x-scpls'],
|
||||
},
|
||||
{
|
||||
}, {
|
||||
'id': GENERIC_TYPE_VIDEO,
|
||||
'name': _('Video'),
|
||||
'icon': 'video-x-generic',
|
||||
@ -84,8 +79,7 @@ _generic_types = [
|
||||
'video/mp4', 'video/x-matroska', 'video/x-msvideo',
|
||||
'application/x-ogm-video', 'video/quicktime', 'video/x-quicktime'
|
||||
'video/avi'],
|
||||
},
|
||||
{
|
||||
}, {
|
||||
'id': GENERIC_TYPE_LINK,
|
||||
'name': _('Link'),
|
||||
'icon': 'text-uri-list',
|
||||
|
@ -643,8 +643,7 @@ class _JoinCommand(_BaseCommand):
|
||||
group.AddMembers([self_handle], '',
|
||||
reply_handler=lambda: None,
|
||||
error_handler=lambda e: self._join_failed_cb(
|
||||
e,
|
||||
'got_all_members AddMembers'))
|
||||
e, 'got_all_members AddMembers'))
|
||||
|
||||
if members:
|
||||
self.__text_channel_members_changed_cb('', members, (),
|
||||
|
Loading…
Reference in New Issue
Block a user