(self)
| 1579 | return ", ".join(notReady) |
| 1580 | |
| 1581 | def areAllFilesInRoomSame(self): |
| 1582 | if self.currentUser.file: |
| 1583 | for user in self._users.values(): |
| 1584 | if user.room == self.currentUser.room and user.file and not self.currentUser.isFileSame(user.file): |
| 1585 | if user.canControl(): |
| 1586 | return False |
| 1587 | return True |
| 1588 | |
| 1589 | def areYouAloneInRoom(self): |
| 1590 | if self._client.recentlyConnected(): |
no test coverage detected