summaryrefslogtreecommitdiff
path: root/kombu/utils/uuid.py
diff options
context:
space:
mode:
Diffstat (limited to 'kombu/utils/uuid.py')
-rw-r--r--kombu/utils/uuid.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/kombu/utils/uuid.py b/kombu/utils/uuid.py
index 9f77dad9..917eccf3 100644
--- a/kombu/utils/uuid.py
+++ b/kombu/utils/uuid.py
@@ -8,7 +8,8 @@ from uuid import UUID, uuid4
def uuid(_uuid: Callable[[], UUID] = uuid4) -> str:
"""Generate unique id in UUID4 format.
- See Also:
+ See Also
+ --------
For now this is provided by :func:`uuid.uuid4`.
"""
return str(_uuid())