mirror of
https://github.com/iluvcapra/wavinfo.git
synced 2026-01-02 18:00:41 +00:00
Update wave_reader.py
This commit is contained in:
@@ -119,7 +119,7 @@ class WavInfoReader:
|
|||||||
|
|
||||||
def _get_ixml(self, f):
|
def _get_ixml(self, f):
|
||||||
ixml_data = self._find_chunk_data(b'iXML', f, default_none=True)
|
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):
|
def walk(self):
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user