Remove redundant line continuations

svn: r16425
This commit is contained in:
Gerald Britton
2011-01-21 16:27:54 +00:00
parent 7788df1b20
commit 680a780a8c
6 changed files with 16 additions and 16 deletions

View File

@ -54,8 +54,8 @@ class AttributeBase(object):
:type source: AttributeBase
"""
if source:
self.attribute_list = [ Attribute(attribute) \
for attribute in source.attribute_list ]
self.attribute_list = [Attribute(attribute)
for attribute in source.attribute_list]
else:
self.attribute_list = []