(status, media, in_reply_to_status_id=None)
| 136 | access_token_secret=TWITTER_ACCESS_TOKEN_SECRET) |
| 137 | |
| 138 | def tweet(status, media, in_reply_to_status_id=None): |
| 139 | api = twitter_api() |
| 140 | api.PostUpdate(status, media, in_reply_to_status_id=in_reply_to_status_id) |
| 141 | |
| 142 | def handle_mentions(): |
| 143 | global SINCE_ID |
no test coverage detected
searching dependent graphs…