fix(xtts_manager): name_to_id() should return dict

This is how the other embedding managers work
This commit is contained in:
Enno Hermann 2024-03-08 14:47:00 +01:00
parent 1aef5ff091
commit 309f39a45f
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ class SpeakerManager:
@property
def name_to_id(self):
return self.speakers.keys()
return self.speakers
@property
def num_speakers(self):