Skip to content

Commit bacbe47

Browse files
committed
Fix long line length
1 parent 548bfb7 commit bacbe47

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

language/sentiment/sentiment_analysis.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ def main(movie_review_filename):
3939
polarity = response['documentSentiment']['polarity']
4040
magnitude = response['documentSentiment']['magnitude']
4141

42-
print('Sentiment: polarity of {} with magnitude of {}'.format(polarity, magnitude))
42+
print('Sentiment: polarity of {} with magnitude of {}'.format(
43+
polarity, magnitude))
4344
return 0
4445

4546

0 commit comments

Comments
 (0)