Further bugfixes. Increase full update interval to 5 minutes.

This commit is contained in:
2023-11-20 19:22:49 +00:00
parent 58579b50c4
commit d0ef32c9e9
2 changed files with 29 additions and 29 deletions
+4 -1
View File
@@ -120,9 +120,12 @@ class FileEntry(msgspec.Struct, array_like=True, frozen=True):
size: int
isfile: int
def __repr__(self):
def __str__(self):
return self.key or "FileEntry()"
def __repr__(self):
return f"{self.name} ({self.size}, {self.mtime})"
class Update(msgspec.Struct, array_like=True):
...