(self)
| 1570 | return userCount |
| 1571 | |
| 1572 | def usersInRoomNotReady(self): |
| 1573 | notReady = [] |
| 1574 | if not self.currentUser.isReady(): |
| 1575 | notReady.append(self.currentUser.username) |
| 1576 | for user in self._users.values(): |
| 1577 | if user.room == self.currentUser.room and user.isReadyWithFile() == False: |
| 1578 | notReady.append(user.username) |
| 1579 | return ", ".join(notReady) |
| 1580 | |
| 1581 | def areAllFilesInRoomSame(self): |
| 1582 | if self.currentUser.file: |
no test coverage detected