Skip to content

Commit c12bd13

Browse files
committed
v0.3.0[publish]
Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
1 parent 3cacc59 commit c12bd13

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

nc_py_api/_talk_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def leave_conversation(self, conversation: typing.Union[Conversation, str]) -> N
205205
"""Removes yourself from the conversation.
206206
207207
.. note:: When the participant is a moderator or owner and there are no other moderators or owners left,
208-
participant can not leave conversation.
208+
participant cannot leave conversation.
209209
210210
:param conversation: conversation token or :py:class:`~nc_py_api.talk.Conversation`.
211211
"""
@@ -419,7 +419,7 @@ def create_poll(
419419
:param conversation: conversation token or :py:class:`~nc_py_api.talk.Conversation`.
420420
:param question: The question of the poll.
421421
:param options: Array of strings with the voting options.
422-
:param hidden_results: Are the results hidden until the poll is closed and then only the summary is published.
422+
:param hidden_results: Should results be hidden until the poll is closed and then only the summary is published.
423423
:param max_votes: The maximum amount of options a participant can vote for.
424424
"""
425425
token = conversation.token if isinstance(conversation, Conversation) else conversation
@@ -493,7 +493,7 @@ def set_conversation_avatar(
493493
:param avatar: Squared image with mimetype equal to PNG or JPEG or a tuple with emoji and optional
494494
HEX color code(6 times ``0-9A-F``) without the leading ``#`` character.
495495
496-
.. note:: Color omit to fallback to the default bright/dark mode icon background color.
496+
.. note:: When color omitted, fallback will be to the default bright/dark mode icon background color.
497497
"""
498498
require_capabilities("spreed.features.avatar", self._session.capabilities)
499499
token = conversation.token if isinstance(conversation, Conversation) else conversation

nc_py_api/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version of nc_py_api."""
22

3-
__version__ = "0.3.0.dev0"
3+
__version__ = "0.3.0"

0 commit comments

Comments
 (0)