We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e0b376 commit 4fa2accCopy full SHA for 4fa2acc
core/cluster.py
@@ -70,7 +70,7 @@ async def available(self):
70
async def write_file(self, file: File, content: bytes):
71
return all(await asyncio.gather(*(asyncio.create_task(storage.write_file(convert_file_to_storage_file(file), content, file.mtime)) for storage in self.available_storages)))
72
73
- async def get_missing_files(self, files: set[File]):
+ async def get_missing_files(self, files: set[File]) -> set[File | Any]:
74
function = None
75
if function is None:
76
logger.twarning("cluster.warning.no_check_function")
0 commit comments