Skip to content

Commit 5e40362

Browse files
authored
[JACK-Client] UUIDs are represented as ints (#14559)
1 parent fb0940e commit 5e40362

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stubs/JACK-Client/jack/__init__.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ class Port:
192192
def set_alias(self, alias: str) -> None: ...
193193
def unset_alias(self, alias: str) -> None: ...
194194
@property
195-
def uuid(self) -> str: ...
195+
def uuid(self) -> int: ...
196196
@property
197197
def is_audio(self) -> bool: ...
198198
@property
@@ -308,7 +308,7 @@ class CallbackExit(Exception): ...
308308

309309
def get_property(subject: int | str, key: str) -> tuple[bytes, str] | None: ...
310310
def get_properties(subject: int | str) -> dict[str, tuple[bytes, str]]: ...
311-
def get_all_properties() -> dict[str, dict[str, tuple[bytes, str]]]: ...
311+
def get_all_properties() -> dict[int, dict[str, tuple[bytes, str]]]: ...
312312
def position2dict(pos: _JackPositionT) -> dict[str, Any]: ... # Anyof[int, float, _CDataBase]
313313
def version() -> tuple[int, int, int, int]: ...
314314
def version_string() -> str: ...

0 commit comments

Comments
 (0)