diff --git a/dynamicserialize/dstypes/com/raytheon/uf/common/dataaccess/response/AbstractResponseData.py b/dynamicserialize/dstypes/com/raytheon/uf/common/dataaccess/response/AbstractResponseData.py index 43fc70a..7fe05a7 100644 --- a/dynamicserialize/dstypes/com/raytheon/uf/common/dataaccess/response/AbstractResponseData.py +++ b/dynamicserialize/dstypes/com/raytheon/uf/common/dataaccess/response/AbstractResponseData.py @@ -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