hass-core/homeassistant/util/uuid.py
Sid e662e3b65c
Bump ruff to 0.4.2 (#116201)
* Bump ruff to 0.4.2

* review comments
2024-04-26 08:48:32 +02:00

12 lines
260 B
Python

"""Helpers to generate uuids."""
from random import getrandbits
def random_uuid_hex() -> str:
"""Generate a random UUID hex.
This uuid should not be used for cryptographically secure
operations.
"""
return f"{getrandbits(32 * 4):032x}"