Documentation

This commit is contained in:
Jamie Hardt
2022-11-26 18:25:12 -08:00
parent a7f77a49f7
commit af5c83b8fc
6 changed files with 126 additions and 21 deletions

View File

@@ -8,7 +8,7 @@ class TestWalk(unittest.TestCase):
info = wavinfo.WavInfoReader(test_file)
tested_data , tested_format = False, False
for scope, key, value in info.walk():
for scope, key, value in info.iter():
if scope == 'fmt':
if key == 'channel_count':
tested_format = True