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

Method areAllFilesInRoomSame

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

Source from the content-addressed store, hash-verified

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():

Callers 2

Calls 2

isFileSameMethod · 0.80
canControlMethod · 0.45

Tested by

no test coverage detected