Fix reliance on impplicit sorting (bug after version 10)
This commit is contained in:
parent
12022c26d9
commit
8cacde72a5
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ class LargeFile:
|
|||
|
||||
@property
|
||||
def version_ids(self) -> List[int]:
|
||||
return [self._get_version_from_key(key) for key in self._versions]
|
||||
return sorted(self._get_version_from_key(key) for key in self._versions)
|
||||
|
||||
@property
|
||||
def version(self) -> int:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue