Python doesn't recognize the `null()` function call. [Line 129 of dis7.py](https://github.com/open-dis/open-dis-python/blob/928becd43282dee1adb3c3853f1fd312addfd883/opendis/dis7.py#L129) is 1st example. ```python for idx in range(0, self.recordLength): element = null() element.parse(inputStream) self.iffData.append(element) ``` Is this supposed to be None?