This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"recommendations": [ | |
// General | |
"aaron-bond.better-comments", | |
"streetsidesoftware.code-spell-checker", | |
"editorconfig.editorconfig", | |
"usernamehw.errorlens", | |
"seatonjiang.gitmoji-vscode", | |
"davidanson.vscode-markdownlint", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import enum | |
def to_long_uuid(uuid: int) -> str: | |
"""Converts 16-bits UUID into 128-bits UUID.""" | |
return f'0000{uuid:04x}-0000-1000-8000-00805f9b34fb' | |
@enum.unique | |
class Characteristic(enum.Enum): |