We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb68d2f commit bce072aCopy full SHA for bce072a
loremricksum.py
@@ -36,12 +36,12 @@ class BotStreamer(tweepy.StreamListener):
36
def on_status(self, status):
37
username = status.user.screen_name
38
status_id = status.id
39
- try:
40
- favorite(status_id)
41
- tweetReply(username, status_id)
42
- except tweepy.TweepError as e:
43
- print((e.reason))
44
+ try:
+ favorite(status_id)
+ tweetReply(username, status_id)
+ except tweepy.TweepError as e:
+ print((e.reason))
45
46
def on_data(self, data):
47
if not 'in_reply_to_status' in data:
0 commit comments