We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c324fc3 commit 354c341Copy full SHA for 354c341
src/sonyflake_turbo/pure.py
@@ -101,7 +101,7 @@ def __call__(self, n: int) -> list[int]:
101
102
def __repr__(self) -> str:
103
cls = self.__class__.__name__
104
- machine_ids = ", ".join(map(str, sorted(self._machine_ids)))
+ machine_ids = ", ".join(map(str, self._machine_ids))
105
return f"{cls}({machine_ids}, start_time={self._start_time // 100})"
106
107
@overload
0 commit comments