Skip to content

Commit

Permalink
fix styling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehmet Tokgöz committed Oct 10, 2022
1 parent 913f7db commit d2f0077
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hazelcast/proxy/topic.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def publish(self, message: MessageType) -> Future[None]:
return self._invoke(request)

def publish_all(self, messages: typing.Sequence[MessageType]) -> Future[None]:
"""Publishes a list of messages to all subscribers of this topic.
"""Publishes the messages to all subscribers of this topic.
Args:
messages: The messages to be published.
Expand Down Expand Up @@ -130,9 +130,9 @@ def publish( # type: ignore[override]
) -> None:
return self._wrapped.publish(message).result()

def publish_all( # type: ignore[override]
self,
messages: typing.Sequence[MessageType]
def publish_all( # type: ignore[override]
self,
messages: typing.Sequence[MessageType]
) -> None:
return self._wrapped.publish_all(messages).result()

Expand Down

0 comments on commit d2f0077

Please sign in to comment.