(self, username, followers_count, following_count)
| 31 | |
| 32 | # place custom events below |
| 33 | def profile_data_updated(self, username, followers_count, following_count): |
| 34 | self.fire_callbacks( |
| 35 | self.profile_data_updated.__name__, |
| 36 | username, |
| 37 | followers_count, |
| 38 | following_count, |
| 39 | ) |
| 40 | |
| 41 | def commented(self, username): |
| 42 | self.fire_callbacks(self.commented.__name__, username) |
no test coverage detected