Skip to content

Commit

Permalink
Merge pull request #54 from souliane/master
Browse files Browse the repository at this point in the history
Thank you!
  • Loading branch information
igo95862 committed Feb 14, 2024
2 parents c0b2965 + 8bc27ea commit 21f27a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/sdbus/dbus_common_elements.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def __init__(self,
self.flags = flags


class DbusSingalCommon(DbusSomethingCommon):
class DbusSignalCommon(DbusSomethingCommon):
def __init__(self,
signal_name: Optional[str],
signal_signature: str,
Expand Down
4 changes: 2 additions & 2 deletions src/sdbus/dbus_proxy_async_signal.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
DbusBindedAsync,
DbusLocalObjectMeta,
DbusRemoteObjectMeta,
DbusSingalCommon,
DbusSignalCommon,
DbusSomethingAsync,
)
from .dbus_common_funcs import get_default_bus
Expand All @@ -51,7 +51,7 @@
T = TypeVar('T')


class DbusSignalAsync(DbusSomethingAsync, DbusSingalCommon, Generic[T]):
class DbusSignalAsync(DbusSomethingAsync, DbusSignalCommon, Generic[T]):

def __init__(
self,
Expand Down
2 changes: 1 addition & 1 deletion test/test_sdbus_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ async def too_long_wait() -> None:
with self.assertRaises(SdBusLibraryError):
await wait_for(too_long_wait(), timeout=1)

async def test_singal_queue_wildcard_match(self) -> None:
async def test_signal_queue_wildcard_match(self) -> None:
test_object, test_object_connection = initialize_object()

loop = get_running_loop()
Expand Down

0 comments on commit 21f27a5

Please sign in to comment.