Remove redundant calls to keys() method of name_to_id

This commit is contained in:
Kasen 2024-01-03 20:47:28 +08:00
parent 5dcc16d193
commit 76612b5a6a
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class SpeakerManager():
@property
def speaker_names(self):
return list(self.name_to_id.keys())
return list(self.name_to_id)
class LanguageManager():