From 8a3cd2f0db6f992034bd9dd249b7924337ba74cd Mon Sep 17 00:00:00 2001 From: Michael James Date: Sun, 14 Oct 2018 18:12:49 -0600 Subject: [PATCH] add super class init in ShortDataRecord.py --- .../raytheon/uf/common/datastorage/records/ShortDataRecord.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dynamicserialize/dstypes/com/raytheon/uf/common/datastorage/records/ShortDataRecord.py b/dynamicserialize/dstypes/com/raytheon/uf/common/datastorage/records/ShortDataRecord.py index 8c574a3..be53273 100644 --- a/dynamicserialize/dstypes/com/raytheon/uf/common/datastorage/records/ShortDataRecord.py +++ b/dynamicserialize/dstypes/com/raytheon/uf/common/datastorage/records/ShortDataRecord.py @@ -4,6 +4,7 @@ from dynamicserialize.dstypes.com.raytheon.uf.common.datastorage.records import class ShortDataRecord(AbstractDataRecord): def __init__(self): + super(ShortDataRecord, self).__init__() self.shortData = None def getShortData(self):