(self, username)
| 1607 | return False |
| 1608 | |
| 1609 | def canControl(self, username): |
| 1610 | if self.currentUser.username == username and self.currentUser.canControl(): |
| 1611 | return True |
| 1612 | |
| 1613 | for user in self._users.values(): |
| 1614 | if user.username == username and user.canControl(): |
| 1615 | return True |
| 1616 | return False |
| 1617 | |
| 1618 | def isReadyWithFile(self, username): |
| 1619 | if self.currentUser.username == username: |
no test coverage detected