1
mirror of https://github.com/home-assistant/core synced 2024-10-07 10:13:38 +02:00

Fix return in translation script

This commit is contained in:
Paulus Schoutsen 2020-04-19 20:37:49 -07:00
parent 4720a7a891
commit b4282fca84

View File

@ -42,10 +42,9 @@ def rename_keys(project_id, to_migrate):
while input("Type YES to confirm: ") != "YES":
pass
return
print()
print("Updating keys")
pprint(lokalise.keys_bulk_update(updates).json())
pprint(lokalise.keys_bulk_update(updates))
def migrate_project_keys_translations(from_project_id, to_project_id, to_migrate):