mirror of
https://github.com/iluvcapra/wavinfo.git
synced 2025-12-31 08:50:41 +00:00
Update wave_reader.py
This commit is contained in:
@@ -119,7 +119,7 @@ class WavInfoReader:
|
||||
|
||||
def _get_ixml(self, f):
|
||||
ixml_data = self._find_chunk_data(b'iXML', f, default_none=True)
|
||||
return None if ixml_data else WavIXMLFormat(ixml_data.rstrip(b'\0'))
|
||||
return None if ixml_data is None else WavIXMLFormat(ixml_data.rstrip(b'\0'))
|
||||
|
||||
def walk(self):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user