Skip to content

Commit e736e7a

Browse files
committed
logic cleanup return after an else
1 parent d539965 commit e736e7a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dynamicserialize/dstypes/com/raytheon/uf/common/dataaccess/response/AbstractResponseData.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ def setLocationName(self, locationName):
3535
def getAttributes(self):
3636
if six.PY2:
3737
return self.attributes
38-
else:
39-
return self.convert(self.attributes)
38+
return self.convert(self.attributes)
4039

4140
def setAttributes(self, attributes):
4241
self.attributes = attributes

0 commit comments

Comments
 (0)