mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 22:57:56 -05:00
logic cleanup return after an else
This commit is contained in:
parent
d539965e07
commit
e736e7ab6f
1 changed files with 1 additions and 2 deletions
|
@ -35,8 +35,7 @@ class AbstractResponseData(six.with_metaclass(abc.ABCMeta, object)):
|
|||
def getAttributes(self):
|
||||
if six.PY2:
|
||||
return self.attributes
|
||||
else:
|
||||
return self.convert(self.attributes)
|
||||
return self.convert(self.attributes)
|
||||
|
||||
def setAttributes(self, attributes):
|
||||
self.attributes = attributes
|
||||
|
|
Loading…
Add table
Reference in a new issue