rename leftmost column heading for audio list

patch bump
This commit is contained in:
onyx-and-iris 2025-06-12 22:17:48 +01:00
parent 535b22bf8e
commit 03f1dac8ea
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,3 @@
"""module for package metadata.""" """module for package metadata."""
__version__ = '0.9.0' __version__ = '0.9.1'

View File

@ -29,7 +29,11 @@ async def list(ctx: click.Context, id: bool = False):
conn.close() conn.close()
return return
table_data = [['Audio Name', 'ID', 'Muted'] if id else ['Name', 'Muted']] table_data = [
['Audio Device Name', 'ID', 'Muted']
if id
else ['Audio Device Name', 'Muted']
]
for source in sources: for source in sources:
model = await source.get_model() model = await source.get_model()