diff options
Diffstat (limited to 'alfa')
-rwxr-xr-x | alfa | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -54,5 +54,5 @@ if __name__ == '__main__': help='The text to translate.') args = cli.parse_args() text = " ".join(args.text) - speech = " ".join([translate(c) for c in text]) + speech = " ".join([translate(c) for c in text.lower()]) print('{}'.format(speech)) |