Skip to content

Commit

Permalink
break at opening paren
Browse files Browse the repository at this point in the history
  • Loading branch information
puneithk committed Nov 14, 2016
1 parent 8f90e39 commit 0ec80c9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions translate/cloud-client/quickstart.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ def run_quickstart():
model = 'base'

# Translates some text into Russian
translation = translate_client.translate(text,
target_language=target,
model=model)
translation = translate_client.translate(
text,
target_language=target,
model=model)

print(u'Text: {}'.format(text))
print(u'Translation: {}'.format(translation['translatedText']))
Expand Down

0 comments on commit 0ec80c9

Please sign in to comment.