mirror of
https://github.com/Hopiu/llm.git
synced 2026-04-27 16:34:46 +00:00
Fix for Python 3.9, refs #1099
This commit is contained in:
parent
1dc7a1d1f9
commit
eafe141d49
1 changed files with 1 additions and 1 deletions
|
|
@ -683,7 +683,7 @@ TIMESTAMP_LEN = 6
|
|||
RANDOMNESS_LEN = 10
|
||||
|
||||
_lock: Final = threading.Lock()
|
||||
_last: bytes | None = None # 16-byte last produced ULID
|
||||
_last: Optional[bytes] = None # 16-byte last produced ULID
|
||||
|
||||
|
||||
def monotonic_ulid() -> ULID:
|
||||
|
|
|
|||
Loading…
Reference in a new issue