Skip to content

Commit

Permalink
Update uuids.py
Browse files Browse the repository at this point in the history
fixed further 3 doc strings
  • Loading branch information
patman15 committed May 18, 2024
1 parent 3a8bbfd commit 5c6b0b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bleak/uuids.py
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,7 @@ def normalize_uuid_16(uuid: int) -> str:
Normaizes a 16-bit integer UUID to the format used by Bleak.
Returns:
128-bit UUID as string with the format ``"0000xxxx-1000-8000-00805f9b34fb"``.
128-bit UUID as string with the format ``"0000xxxx-0000-1000-8000-00805f9b34fb"``.
Example::
Expand All @@ -1262,12 +1262,12 @@ def normalize_uuid_32(uuid: int) -> str:
Normaizes a 32-bit integer UUID to the format used by Bleak.
Returns:
128-bit UUID as string with the format ``"xxxxxxxx-1000-8000-00805f9b34fb"``.
128-bit UUID as string with the format ``"xxxxxxxx-0000-1000-8000-00805f9b34fb"``.
Example::
uuid = normalize_uuid_32(0x12345678)
# uuid == "12345678-1000-8000-00805f9b34fb"
# uuid == "12345678-0000-1000-8000-00805f9b34fb"
.. versionadded:: 0.21
"""
Expand Down

0 comments on commit 5c6b0b4

Please sign in to comment.