MCPcopy Create free account
hub / github.com/Syncplay/syncplay / usersInRoomNotReady

Method usersInRoomNotReady

syncplay/client.py:1572–1579  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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:

Callers 1

Calls 2

isReadyMethod · 0.45
isReadyWithFileMethod · 0.45

Tested by

no test coverage detected