From 1563a02ace4190924817b64a7a30deb9909ac643 Mon Sep 17 00:00:00 2001 From: lilkitkat1 Date: Wed, 1 Jun 2022 19:19:29 +0200 Subject: [PATCH] Changes --- video_creation/voices.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/video_creation/voices.py b/video_creation/voices.py index dd6f281..42978e4 100644 --- a/video_creation/voices.py +++ b/video_creation/voices.py @@ -15,12 +15,12 @@ def get_accent(_in: str) -> str: accents = { "australia": "com.au", - "united kingdom": "co.uk", - "united states": "com", + "united_kingdom": "co.uk", + "united_states": "com", "canada": "ca", "india" : "co.in", "ireland": "ie", - "south africa": "co.za" + "south_africa": "co.za" } return accents[_in.lower()]